We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee667a commit 4676563Copy full SHA for 4676563
src-test/org/j262/cache/test/CacheTest.java
@@ -22,9 +22,9 @@ public void testCacher() throws CacheException {
22
cahe.put(new Integer(i), new Integer(-i));
23
}
24
25
- assertNull("×èñëî "+1+" äîëæíî áûòü â êýø", cahe.get(1));
26
- assertNotNull("×èñëî "+(maxCount-1)+" äîëæíî áûòü â êýø", cahe.get(maxCount-1));
27
- assertNull("×èñëî "+(maxCount)+" íå äîëæíî áûòü â êýø", cahe.get(maxCount));
+ assertNull("Number "+1+" leaved cache, but we found it", cahe.get(1));
+ assertNotNull("Number "+(maxCount-1)+" must be in cache", cahe.get(maxCount-1));
+ assertNull("Number "+(maxCount)+" don't be in cache", cahe.get(maxCount));
28
29
30
0 commit comments