diff --git a/Tests/BSONTests/BSONPublicTests.swift b/Tests/BSONTests/BSONPublicTests.swift index 64acfff..1792c19 100644 --- a/Tests/BSONTests/BSONPublicTests.swift +++ b/Tests/BSONTests/BSONPublicTests.swift @@ -28,6 +28,8 @@ final class BSONPublicTests: XCTestCase { ("testValidation", testValidation), ("testSubscripting", testSubscripting), ("testObjectId", testObjectId), + ("testObjectIdString", testObjectIdString), + ("testObjectIdHash", testObjectIdHash ), ("testExtendedJSON", testExtendedJSON), ("testDocumentIndexes", testDocumentIndexes), ("testComparison", testComparison), diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift index 77c5cd7..17cf6e5 100644 --- a/Tests/LinuxMain.swift +++ b/Tests/LinuxMain.swift @@ -1,9 +1,5 @@ -#if os(Linux) - import XCTest @testable import BSONTests XCTMain([testCase(BSONInternalTests.allTests), testCase(BSONPublicTests.allTests)]) - -#endif