()
| 65 | } |
| 66 | |
| 67 | @Test(expected = IllegalArgumentException.class) |
| 68 | public void dumpToFilesDirectoryExistsNotWritable() throws Exception { |
| 69 | PowerMockito.when(mockFile, "canWrite").thenReturn(false); |
| 70 | plot.dumpToFiles("/temp/opentsdb/s0M3haSh"); |
| 71 | } |
| 72 | |
| 73 | @Test |
| 74 | public void dumpToFilesCreateNonexistentDirectory() throws Exception { |
nothing calls this directly
no test coverage detected