Skip to content

Commit 0e9c9ba

Browse files
committed
=tests use bootstrapInternal to have tests pass
1 parent 0c4cdbe commit 0e9c9ba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.build
2+
.swiftpm

Tests/swift-log-fileTests/swift_log_fileTests.swift

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
import XCTest
22
@testable import FileLogging
3-
import Logging
3+
@testable import Logging
44

55
enum TestError: Error {
66
case noDocumentDirectory
77
case cannotGetFileSize
88
}
99

10-
// TESTING ALERT:
11-
// This must be tested manually, single test by single test, due to "logging system can only be initialized once per process." in the swift logger.
12-
1310
final class swift_log_fileTests: XCTestCase {
1411
let logFileName = "LogFile.txt"
1512

1613
func testLogToFileUsingBootstrap() throws {
1714
let logFileURL = try getDocumentsDirectory().appendingPathComponent(logFileName)
1815
print("\(logFileURL)")
1916
let logFileHandler = try FileLogHandler(label: "Foobar", localFile: logFileURL)
20-
LoggingSystem.bootstrap(logFileHandler.handler)
17+
LoggingSystem.bootstrapInternal(logFileHandler.handler)
18+
2119
let logger = Logger(label: "Test")
2220

2321
// Not really an error.
@@ -28,7 +26,7 @@ final class swift_log_fileTests: XCTestCase {
2826
let logFileURL = try getDocumentsDirectory().appendingPathComponent(logFileName)
2927
print("\(logFileURL)")
3028
let logFileHandler = try FileLogHandler(label: "Foobar", localFile: logFileURL)
31-
LoggingSystem.bootstrap(logFileHandler.handler)
29+
LoggingSystem.bootstrapInternal(logFileHandler.handler)
3230
let logger = Logger(label: "Test")
3331

3432
// Not really an error.

0 commit comments

Comments
 (0)