()
| 67 | } |
| 68 | |
| 69 | @Test (expected = IllegalArgumentException.class) |
| 70 | public void initializeEmptyHost() throws Exception { |
| 71 | when(config.getString("tsd.search.DummySearchPlugin.hosts")) |
| 72 | .thenReturn(""); |
| 73 | search.initialize(tsdb); |
| 74 | } |
| 75 | |
| 76 | @Test (expected = NullPointerException.class) |
| 77 | public void initializeMissingPort() throws Exception { |
nothing calls this directly
no test coverage detected