()
| 86 | } |
| 87 | |
| 88 | @Test(expected = IllegalArgumentException.class) |
| 89 | public void dumpToFilesNotADirectory() throws Exception { |
| 90 | PowerMockito.when(mockFile, "exists").thenReturn(true); |
| 91 | PowerMockito.when(mockFile, "isDirectory").thenReturn(false); |
| 92 | plot.dumpToFiles("/temp/opentsdb/s0M3haSh"); |
| 93 | } |
| 94 | } |
nothing calls this directly
no test coverage detected