Пример #1
0
 @Test
 public void testIsCompatibleNewer() {
   UpgradeResponse response = UpgradeResponse.fromJSON(TEST_JSON);
   LOG.info("Testing isCompatibleNewer");
   assertTrue(response.isCompatibleNewer("1.0.0"));
   assertFalse(response.isCompatibleNewer("1.1.0"));
   assertFalse(response.isCompatibleNewer("3.0.0"));
   assertTrue(response.isCompatibleNewer("1.1.0-rc1"));
 }