public class AnnotatedDaoRuntimeInfoFactoryTest {
public void test_create() {
AnnotatedDaoRuntimeInfoFactory factory = new AnnotatedDaoRuntimeInfoFactory();
AnnotatedDaoRuntimeInfo runtimeInfo = factory.create(FullAnnotatedDao.class);
assertNotNull(runtimeInfo);
AnnotatedDaoRuntimeInfo runtimeInfo2 = factory.create(FullAnnotatedDao.class);
assertSame(runtimeInfo, runtimeInfo2);
AnnotatedDaoRuntimeInfo runtimeInfo3 = factory.create(MinimumAnnotatedDao.class);
assertNotSame(runtimeInfo, runtimeInfo3);
}