()
| 87 | |
| 88 | |
| 89 | @Test |
| 90 | public void keys() throws Exception { |
| 91 | String[] keys = fileStore.keys(); |
| 92 | Arrays.sort(keys); |
| 93 | Assert.assertArrayEquals(new String[]{"tmp1", "tmp2"}, keys); |
| 94 | fileStore.clear(); |
| 95 | Assert.assertArrayEquals(new String[]{}, fileStore.keys()); |
| 96 | } |
| 97 | |
| 98 | |
| 99 | @Test |
nothing calls this directly
no test coverage detected