/** Tests {@link IBatisCacheController#getObject(CacheModel, Object)}. */
  public void testGetObject() {

    controller.putObject(cacheModel, KEY, OBJECT);
    assertEquals(OBJECT, controller.getObject(cacheModel, KEY));
  }