From: Richard B. <rb...@us...> - 2004-10-21 23:36:57
|
Update of /cvsroot/jcframework/Nunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5970 Modified Files: AtomsFramework.xml original db1.mdb Log Message: Extra tests for duplicates in collections, and deleting non-inherited objects Index: original db1.mdb =================================================================== RCS file: /cvsroot/jcframework/Nunit/original db1.mdb,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 Binary files /tmp/cvsEoJIyf and /tmp/cvsxkTHzM differ Index: AtomsFramework.xml =================================================================== RCS file: /cvsroot/jcframework/Nunit/AtomsFramework.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- AtomsFramework.xml 20 Oct 2004 06:43:40 -0000 1.8 +++ AtomsFramework.xml 21 Oct 2004 23:36:45 -0000 1.9 @@ -114,6 +114,7 @@ <attribute name="Id" column="id" key="primary"/> <attribute name="field1" column="field1" /> <attribute name="TableBCollection" /> + <attribute name="TableCCollection" /> </class> <class name="TableB" table="TableB" database="MSA" namespace="NunitTests.InheritedClasses"> <attribute name="Id" column="id" key="primary"/> @@ -121,10 +122,20 @@ <attribute name="AId" column="a_id" /> <attrbute name="TableA" /> </class> +<class name="TableC" table="TableC" database="MSA" namespace="NunitTests.InheritedClasses"> + <attribute name="Id" column="id" key="primary"/> + <attribute name="field1" column="field1" /> + <attribute name="AId" column="a_id" /> + <attrbute name="TableA" /> +</class> <association fromClass="NunitTests.InheritedClasses.TableA" toClass="NunitTests.InheritedClasses.TableB" target="TableBCollection" cardinality="OneToMany" retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false" name="AtoB"> <entry fromAttribute="Id" toAttribute="AId"/> </association> +<association fromClass="NunitTests.InheritedClasses.TableA" toClass="NunitTests.InheritedClasses.TableC" target="TableCCollection" cardinality="OneToMany" + retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false" name="AtoC"> + <entry fromAttribute="Id" toAttribute="AId"/> +</association> <class name="A" table="tblA" database="MSA" namespace="NunitTests.InheritedClasses"> <attribute name="OIDValue" column="oid" key="primary"/> |