List of usage examples for org.apache.ibatis.cache CacheKey toString
@Override
public String toString()
From source file:com.ibatis.sqlmap.engine.cache.CacheKeyTest.java
License:Apache License
public void testUpdate() { CacheKey key3 = new CacheKey(); CacheKey key4 = new CacheKey(); key3.update("AV"); key4.update("B7"); assertTrue(!key3.equals(key4));//from w w w . j ava 2 s . com assertTrue(!key3.toString().equals(key4.toString())); }