()
| 81 | } |
| 82 | |
| 83 | @Test (expected = IllegalArgumentException.class) |
| 84 | public void initializeInvalidPort() throws Exception { |
| 85 | when(config.getInt("tsd.search.DummySearchPlugin.port")) |
| 86 | .thenThrow(new NumberFormatException()); |
| 87 | search.initialize(tsdb); |
| 88 | } |
| 89 | |
| 90 | @Test |
| 91 | public void shutdown() throws Exception { |
nothing calls this directly
no test coverage detected