@Test public void testSize() throws Exception { table.put("Key1", "Value1"); table.put("Key2", "Value2"); table.put("Key3", "Value3"); Assert.assertEquals(3, table.size()); }
@Test public void testPutAndRollback() throws Exception { table.put("Key1", "Value1"); table.put("Key2", "Value2"); table.put("Key3", "Value3"); Assert.assertEquals(3, table.rollback()); }
@Test public void testRemovePutCommit() throws Exception { table.put("Key", "Value"); table.commit(); table.remove("Key"); table.put("Key", "Value"); Assert.assertEquals(0, table.commit()); }
@Test public void testRemoveExisted() throws Exception { table.put("Key", "Value"); Assert.assertEquals("Value", table.remove("Key")); }
@Test(expected = IllegalArgumentException.class) public void testPutEmptyKey() throws Exception { table.put("", "valueOfEmptyKey"); }
@Test(expected = IllegalArgumentException.class) public void testPutNullKey() throws Exception { table.put(null, "valueOfNullKey"); }
@Test public void testPutNew() throws Exception { Assert.assertNull(table.put("putNewKey", "putNewValue")); table.remove("putNewKey"); }
@Test public void testGetInRussian() throws Exception { table.put("ключ", "значение"); Assert.assertEquals("значение", table.get("ключ")); }
@Test public void testGetInEnglish() throws Exception { table.put("getEnglishKey", "getEnglishValue"); Assert.assertEquals("getEnglishValue", table.get("getEnglishKey")); }