Add projects

This commit is contained in:
Ivan Vorobei
2019-06-07 09:04:22 +03:00
parent bbb48dbce9
commit fffd52a399
16 changed files with 1923 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import XCTest
@testable import SplitView
final class SplitViewTests: XCTestCase {
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
}
static var allTests = [
("testExample", testExample),
]
}

View File

@@ -0,0 +1,9 @@
import XCTest
#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(SplitViewTests.allTests),
]
}
#endif