12 lines
126 B
Swift
12 lines
126 B
Swift
#if os(Linux)
|
|
|
|
import XCTest
|
|
@testable import AppTests
|
|
|
|
XCTMain([
|
|
// AppTests
|
|
testCase(AppTests.allTests),
|
|
])
|
|
|
|
#endif
|