Unit test helpers
| 111 | |
| 112 | // Unit test helpers |
| 113 | TEST(dmTestUtil, MakeHostPath) |
| 114 | { |
| 115 | char path[128]; |
| 116 | |
| 117 | dmTestUtil::MakeHostPath(path, sizeof(path), "does_not_exists"); |
| 118 | ASSERT_STREQ(DM_HOSTFS "does_not_exists", path); |
| 119 | } |
| 120 | /////////////////////////////////////////////////////////// |
| 121 | |
| 122 | TEST(dmSys, Exists) |
nothing calls this directly
no test coverage detected