From: Lars H. <lh...@us...> - 2005-03-07 13:05:52
|
Update of /cvsroot/tmapi-utils/tmapi-utils/src/org/tmapiutils/query/tolog/predicates/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25500/src/org/tmapiutils/query/tolog/predicates/test Modified Files: TypePredicateTest.java Log Message: AssociationRole.getParent() -> AssociationRole.getAssociation() Index: TypePredicateTest.java =================================================================== RCS file: /cvsroot/tmapi-utils/tmapi-utils/src/org/tmapiutils/query/tolog/predicates/test/TypePredicateTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TypePredicateTest.java 7 Mar 2005 12:32:00 -0000 1.3 --- TypePredicateTest.java 7 Mar 2005 13:05:41 -0000 1.4 *************** *** 102,106 **** assertEquals(getObjectById("employee"), out.getRow(0).get(1)); ! params.set(0, fredRole.getParent()); out = m_predicate.matches(params, m_context); assertNotNull(out); --- 102,106 ---- assertEquals(getObjectById("employee"), out.getRow(0).get(1)); ! params.set(0, fredRole.getAssociation()); out = m_predicate.matches(params, m_context); assertNotNull(out); *************** *** 158,162 **** assertEquals(1, out.getRows().size()); ! params.set(0, fredRole.getParent()); params.set(1, getObjectById("works-for")); out = m_predicate.matches(params, m_context); --- 158,162 ---- assertEquals(1, out.getRows().size()); ! params.set(0, fredRole.getAssociation()); params.set(1, getObjectById("works-for")); out = m_predicate.matches(params, m_context); *************** *** 193,196 **** --- 193,199 ---- /* * $Log$ + * Revision 1.4 2005/03/07 13:05:41 lheuer + * AssociationRole.getParent() -> AssociationRole.getAssociation() + * * Revision 1.3 2005/03/07 12:32:00 lheuer * More TM4J -> TMAPI translations |