diff --git a/.gitignore b/.gitignore index c235f20..2d4061c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,5 @@ - -# Created by https://www.gitignore.io/api/vapor - -### Vapor ### -Config/secrets - -### Vapor Patch ### -Packages -.build -xcuserdata -*.xcodeproj -DerivedData/ .DS_Store - -# End of https://www.gitignore.io/api/vapor +/.build +/Packages +/*.xcodeproj +Package.pins \ No newline at end of file diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift index e8e5b96..bb8a346 100644 --- a/Tests/LinuxMain.swift +++ b/Tests/LinuxMain.swift @@ -1,12 +1,31 @@ -#if os(Linux) +// Generated using Sourcery 0.7.2 — https://github.com/krzysztofzablocki/Sourcery +// DO NOT EDIT import XCTest -@testable import AppTests +@testable import TelesignTests + +extension MessagingTests { +static var allTests = [ + ("testGetMessageSatus", testGetMessageSatus), + ("testMessageSuccessfullyDeliveredAFter10Seconds", testMessageSuccessfullyDeliveredAFter10Seconds), +] +} + +extension PhoneIdTests { +static var allTests = [ + ("testPhoneIdIsAccurate", testPhoneIdIsAccurate), +] +} + +extension ScoreTests { +static var allTests = [ + ("testPhoneIdIsAccurate", testPhoneIdIsAccurate), +] +} + XCTMain([ - // AppTests - testCase(PostControllerTests.allTests), - testCase(RouteTests.allTests) + testCase(MessagingTests.allTests), + testCase(PhoneIdTests.allTests), + testCase(ScoreTests.allTests), ]) - -#endif