| OLD | NEW |
| 1 * Running: CreateSimple | 1 * Running: CreateSimple |
| 2 PASS Succeeded: "/".getDirectory("a") | 2 PASS Succeeded: "/".getDirectory("a") |
| 3 PASS Succeeded: "/".getFile("b") | 3 PASS Succeeded: "/".getFile("b") |
| 4 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} | 4 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} |
| 5 PASS Verified entry: ENTRY {path:/b name:b type:FILE} | 5 PASS Verified entry: ENTRY {path:/b name:b type:FILE} |
| 6 * Running: CreateNested | 6 * Running: CreateNested |
| 7 PASS Succeeded: "/".getDirectory("a") | 7 PASS Succeeded: "/".getDirectory("a") |
| 8 PASS Succeeded: "/a".getDirectory("b") | 8 PASS Succeeded: "/a".getDirectory("b") |
| 9 PASS Succeeded: "/a/b".getDirectory("c") | 9 PASS Succeeded: "/a/b".getDirectory("c") |
| 10 PASS Succeeded: "/a/b/c".getDirectory("d") | 10 PASS Succeeded: "/a/b/c".getDirectory("d") |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 PASS this.environment[this.entry.fullPath].fullPath is "/a" | 55 PASS this.environment[this.entry.fullPath].fullPath is "/a" |
| 56 PASS this.environment[this.entry.fullPath].isFile + "" is "false" | 56 PASS this.environment[this.entry.fullPath].isFile + "" is "false" |
| 57 PASS this.environment[this.entry.fullPath].isDirectory + "" is "true" | 57 PASS this.environment[this.entry.fullPath].isDirectory + "" is "true" |
| 58 PASS Succeeded: "/".getFile("b") | 58 PASS Succeeded: "/".getFile("b") |
| 59 PASS this.environment[this.entry.fullPath].fullPath is "/b" | 59 PASS this.environment[this.entry.fullPath].fullPath is "/b" |
| 60 PASS this.environment[this.entry.fullPath].isFile + "" is "true" | 60 PASS this.environment[this.entry.fullPath].isFile + "" is "true" |
| 61 PASS this.environment[this.entry.fullPath].isDirectory + "" is "false" | 61 PASS this.environment[this.entry.fullPath].isDirectory + "" is "false" |
| 62 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} | 62 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} |
| 63 PASS Verified entry: ENTRY {path:/b name:b type:FILE} | 63 PASS Verified entry: ENTRY {path:/b name:b type:FILE} |
| 64 * Running: GetNonExistent | 64 * Running: GetNonExistent |
| 65 PASS this.expectedErrorCode + "" is "1" | 65 PASS this.expectedError + "" is "NotFoundError" |
| 66 PASS this.expectedErrorCode + "" is "1" | 66 PASS this.expectedError + "" is "NotFoundError" |
| 67 PASS this.expectedErrorCode + "" is "1" | 67 PASS this.expectedError + "" is "NotFoundError" |
| 68 PASS this.expectedErrorCode + "" is "1" | 68 PASS this.expectedError + "" is "NotFoundError" |
| 69 * Running: GetFileForDirectory | 69 * Running: GetFileForDirectory |
| 70 PASS this.expectedErrorCode + "" is "11" | 70 PASS this.expectedError + "" is "TypeMismatchError" |
| 71 PASS this.expectedErrorCode + "" is "11" | 71 PASS this.expectedError + "" is "TypeMismatchError" |
| 72 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} | 72 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} |
| 73 * Running: GetDirectoryForFile | 73 * Running: GetDirectoryForFile |
| 74 PASS this.expectedErrorCode + "" is "11" | 74 PASS this.expectedError + "" is "TypeMismatchError" |
| 75 PASS this.expectedErrorCode + "" is "11" | 75 PASS this.expectedError + "" is "TypeMismatchError" |
| 76 PASS Verified entry: ENTRY {path:/a name:a type:FILE} | 76 PASS Verified entry: ENTRY {path:/a name:a type:FILE} |
| 77 * Running: CreateWithExclusive | 77 * Running: CreateWithExclusive |
| 78 PASS this.expectedErrorCode + "" is "9" | 78 PASS this.expectedError + "" is "InvalidModificationError" |
| 79 PASS this.expectedErrorCode + "" is "9" | 79 PASS this.expectedError + "" is "InvalidModificationError" |
| 80 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} | 80 PASS Verified entry: ENTRY {path:/a name:a type:DIRECTORY} |
| 81 PASS Verified entry: ENTRY {path:/b name:b type:FILE} | 81 PASS Verified entry: ENTRY {path:/b name:b type:FILE} |
| 82 Finished running tests. | 82 Finished running tests. |
| 83 PASS successfullyParsed is true | 83 PASS successfullyParsed is true |
| 84 | 84 |
| 85 TEST COMPLETE | 85 TEST COMPLETE |
| 86 | 86 |
| OLD | NEW |