6061626364656667686970
public void flush() { final FlushMethod method = daoRuntimeInfo.getFlushMethod(); assertMethod(method, Flush.class); method.invoke(dao); } /* (non-Javadoc) * @see org.milyn.scribe.invoker.DAOInvoker#merge(java.lang.Object) */
127128129130131132133134135136137
FlushMethod method = fullAnnotatedDaoRuntimeInfo.getFlushMethod(); assertNotNull(method); method.invoke(fullAnnotatedDao); verify(fullAnnotatedDao).flushIt(); assertNull(minimumAnnotatedDaoRuntimeInfo.getFlushMethod());