From 8b96488bed243220efaa866fee799b5baaa6cff5 Mon Sep 17 00:00:00 2001 From: Laurent Gaches Date: Mon, 6 Feb 2017 13:16:54 +0100 Subject: [PATCH] add new test to Linux target --- Tests/BSONTests/BSONPublicTests.swift | 2 ++ Tests/LinuxMain.swift | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) 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