()
| 325 | } |
| 326 | |
| 327 | @Test (expected = IllegalArgumentException.class) |
| 328 | public void syncToStorageMissingStart() throws Exception { |
| 329 | note.setTSUID(TSUID); |
| 330 | note.setDescription("Synced!"); |
| 331 | note.syncToStorage(tsdb, false).joinUninterruptibly(); |
| 332 | } |
| 333 | |
| 334 | @Test (expected = IllegalStateException.class) |
| 335 | public void syncToStorageNoChanges() throws Exception { |
nothing calls this directly
no test coverage detected