Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Edwards authored and Andrew Edwards committed Jul 25, 2017
1 parent 6a0a43c commit 0b8bc40
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 21 deletions.
18 changes: 4 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
33 changes: 26 additions & 7 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0b8bc40

Please sign in to comment.