This commit is contained in:
Max Howell
2019-01-17 16:33:38 -05:00
parent 8e0d766924
commit 97e9cbaa8f
16 changed files with 754 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import XCTest
extension PathTests {
static let __allTests = [
("testBasename", testBasename),
("testCodable", testCodable),
("testConcatenation", testConcatenation),
("testEnumeration", testEnumeration),
("testExists", testExists),
("testIsDirectory", testIsDirectory),
("testMkpathIfExists", testMkpathIfExists),
("testMktemp", testMktemp),
("testRelativePathCodable", testRelativePathCodable),
("testRelativeTo", testRelativeTo),
]
}
#if !os(macOS)
public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(PathTests.__allTests),
]
}
#endif