This commit is contained in:
Shota Shimazu 2018-11-14 12:58:18 +09:00
parent 2dd5f6c65c
commit 707714a86c
2 changed files with 5 additions and 6 deletions

View File

@ -51,9 +51,8 @@ extension Path {
/// iOSDir enum is list of iOS application directories
public enum iOSDir {
public enum IOSDir {
/// .document returns iOS Documents directory
case document

View File

@ -23,12 +23,12 @@ class IOSDirs: XCTestCase {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
let documentDirectory: String = iOSDir.document.path
let libraryDirectory: String = iOSDir.library.path
//let documentDirectory: String = IOSDirs.document.path
//let libraryDirectory: String = IOSDirs.library.path
NSLog("LOG: ")
NSLog(documentDirectory)
NSLog(libraryDirectory)
// NSLog(documentDirectory)
// NSLog(libraryDirectory)
// XCTAssertEqual(current, moved)
}