| 95 | }; |
| 96 | |
| 97 | TEST(dmZip, NotExist) |
| 98 | { |
| 99 | char path[128]; |
| 100 | dmTestUtil::MakeHostPath(path, sizeof(path), "NOTEEXIST"); |
| 101 | |
| 102 | dmZip::HZip zip; |
| 103 | dmZip::Result zr = dmZip::Open(path, &zip); |
| 104 | ASSERT_NE(dmZip::RESULT_OK, zr); |
| 105 | } |
| 106 | |
| 107 | TEST_P(ZipArchiveTest, Iterate) |
| 108 | { |
nothing calls this directly
no test coverage detected