From: Richard B. <rb...@us...> - 2005-02-14 02:24:27
|
Update of /cvsroot/jcframework/Nunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24223 Modified Files: AtomsFramework.xml Nunit_AtomsFramework.vbproj Log Message: Update unit tests for many-to-many and remove old unit tests for previous method of doing N:M associations. Index: Nunit_AtomsFramework.vbproj =================================================================== RCS file: /cvsroot/jcframework/Nunit/Nunit_AtomsFramework.vbproj,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- Nunit_AtomsFramework.vbproj 9 Feb 2005 06:20:47 -0000 1.16 +++ Nunit_AtomsFramework.vbproj 14 Feb 2005 02:24:11 -0000 1.17 @@ -160,21 +160,11 @@ BuildAction = "Compile" /> <File - RelPath = "InheritedClasses\ManyToManyClasses.vb" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "InheritedClasses\ManyToManyClasses_v2.vb" SubType = "Code" BuildAction = "Compile" /> <File - RelPath = "InheritedClasses\ManyToManyTests.vb" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "InheritedClasses\ManyToManyTests_v2.vb" SubType = "Code" BuildAction = "Compile" Index: AtomsFramework.xml =================================================================== RCS file: /cvsroot/jcframework/Nunit/AtomsFramework.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- AtomsFramework.xml 9 Feb 2005 06:20:47 -0000 1.17 +++ AtomsFramework.xml 14 Feb 2005 02:24:11 -0000 1.18 @@ -306,47 +306,6 @@ inverse="false"> <entry fromAttribute="BOID" toAttribute="OIDValue"/> </association> - - <class name="ManyToManyA" table="ManyToManyA" database="MSA" namespace="NunitTests.InheritedClasses"> - <attribute name="GUIDValue" column="GuidValue" key="primary"/> - <attribute name="Description" column="description" /> - <attribute name="M2MABCollection" /> - </class> - <class name="ManyToManyB" table="ManyToManyB" database="MSA" namespace="NunitTests.InheritedClasses"> - <attribute name="GUIDValue" column="GuidValue" key="primary"/> - <attribute name="Description" column="description" /> - <attribute name="M2MABCollection" /> - </class> - <class name="ManyToManyAB" table="ManyToManyAB" database="MSA" namespace="NunitTests.InheritedClasses"> - <attribute name="AGuidValue" column="AGuidValue" key="primary"/> - <attribute name="BGuidValue" column="BGuidValue" key="primary"/> - <attribute name="M2MA"/> - <attribute name="M2MB"/> - </class> - <association fromClass="NunitTests.InheritedClasses.ManyToManyA" - toClass="NunitTests.InheritedClasses.ManyToManyAB" - cardinality="OneToMany" target="M2MABCollection" - retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false"> - <entry fromAttribute="GUIDValue" toAttribute="AGuidValue"/> - </association> - <association fromClass="NunitTests.InheritedClasses.ManyToManyB" - toClass="NunitTests.InheritedClasses.ManyToManyAB" - cardinality="OneToMany" target="M2MABCollection" - retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false"> - <entry fromAttribute="GUIDValue" toAttribute="BGuidValue"/> - </association> - <association fromClass="NunitTests.InheritedClasses.ManyToManyAB" - toClass="NunitTests.InheritedClasses.ManyToManyA" - cardinality="OneToOne" target="M2MA" - retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false"> - <entry fromAttribute="AGuidValue" toAttribute="GUIDValue"/> - </association> - <association fromClass="NunitTests.InheritedClasses.ManyToManyAB" - toClass="NunitTests.InheritedClasses.ManyToManyB" - cardinality="OneToOne" target="M2MB" - retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true" inverse="false"> - <entry fromAttribute="BGuidValue" toAttribute="GUIDValue"/> - </association> <class name="LazyEmployee" table="NPEmployee" database="MSA" namespace="NunitTests.StandardClasses"> <attribute name="Name" column="name" find="true" key="primary"/> |