| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkString.h" | 8 #include "SkString.h" |
| 9 #include "SkOSFile.h" | 9 #include "SkOSFile.h" |
| 10 #include "Test.h" | 10 #include "Test.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 SkString empty = SkOSPath::SkBasename(NULL); | 78 SkString empty = SkOSPath::SkBasename(NULL); |
| 79 REPORTER_ASSERT(reporter, empty.size() == 0); | 79 REPORTER_ASSERT(reporter, empty.size() == 0); |
| 80 | 80 |
| 81 // Test that NULL can be used for the directory and filename. | 81 // Test that NULL can be used for the directory and filename. |
| 82 SkString emptyPath = SkOSPath::SkPathJoin(NULL, NULL); | 82 SkString emptyPath = SkOSPath::SkPathJoin(NULL, NULL); |
| 83 REPORTER_ASSERT(reporter, emptyPath.size() == 1); | 83 REPORTER_ASSERT(reporter, emptyPath.size() == 1); |
| 84 REPORTER_ASSERT(reporter, emptyPath.contains(SkPATH_SEPARATOR)); | 84 REPORTER_ASSERT(reporter, emptyPath.contains(SkPATH_SEPARATOR)); |
| 85 } | 85 } |
| 86 | 86 |
| 87 #include "TestClassDef.h" | 87 #include "TestClassDef.h" |
| 88 DEFINE_TESTCLASS("OSPath", OSPathTestClass, test_os_path_utils_tests) | 88 DEFINE_TESTCLASS_SHORT(test_os_path_utils_tests) |
| OLD | NEW |