From: Richard B. <rb...@us...> - 2005-02-09 06:21:04
|
Update of /cvsroot/jcframework/Nunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28234 Modified Files: AtomsFramework.xml Nunit_AtomsFramework.vbproj Nunit_AtomsFramework.vbproj.user original db1.mdb Log Message: Unit test for new Many-to-Many associations Index: Nunit_AtomsFramework.vbproj =================================================================== RCS file: /cvsroot/jcframework/Nunit/Nunit_AtomsFramework.vbproj,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Nunit_AtomsFramework.vbproj 17 Dec 2004 03:27:47 -0000 1.15 +++ Nunit_AtomsFramework.vbproj 9 Feb 2005 06:20:47 -0000 1.16 @@ -165,11 +165,21 @@ 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" + /> + <File RelPath = "InheritedClasses\MultiRetrieveTestClasses.vb" SubType = "Code" BuildAction = "Compile" Index: original db1.mdb =================================================================== RCS file: /cvsroot/jcframework/Nunit/original db1.mdb,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 Binary files /tmp/cvsL7pJ1Y and /tmp/cvsIoZ90O differ Index: AtomsFramework.xml =================================================================== RCS file: /cvsroot/jcframework/Nunit/AtomsFramework.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- AtomsFramework.xml 7 Feb 2005 22:07:15 -0000 1.16 +++ AtomsFramework.xml 9 Feb 2005 06:20:47 -0000 1.17 @@ -363,4 +363,27 @@ <entry fromAttribute="Name" toAttribute="ReportsToName"/> </association> + <class name="M2MA" table="ManyToManyA" database="MSA" namespace="NunitTests.InheritedClasses"> + <attribute name="GUIDValue" column="GuidValue" key="primary"/> + <attribute name="Description" column="description" /> + <attribute name="M2MBCollection" /> + </class> + <class name="M2MB" table="ManyToManyB" database="MSA" namespace="NunitTests.InheritedClasses"> + <attribute name="GUIDValue" column="GuidValue" key="primary"/> + <attribute name="Description" column="description" /> + <attribute name="M2MACollection" /> + </class> + <association fromClass="NunitTests.InheritedClasses.M2MA" + toClass="NunitTests.InheritedClasses.M2MB" + cardinality="ManyToMany" + fromClassTarget="M2MBCollection" + toClassTarget="M2MACollection" + retrieveAutomatic="true" saveAutomatic="true" deleteAutomatic="true"> + <associationTable name="ManyToManyAB"> + <fromClassKey name="GUIDValue" column="AGuidValue" /> + <toClassKey name="GUIDValue" column="BGuidValue" /> + </associationTable> + </association> + + </map> \ No newline at end of file Index: Nunit_AtomsFramework.vbproj.user =================================================================== RCS file: /cvsroot/jcframework/Nunit/Nunit_AtomsFramework.vbproj.user,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Nunit_AtomsFramework.vbproj.user 18 Oct 2004 00:07:10 -0000 1.1 +++ Nunit_AtomsFramework.vbproj.user 9 Feb 2005 06:20:47 -0000 1.2 @@ -13,7 +13,7 @@ StartAction = "Program" StartArguments = '"..\Nunit_AtomsFramework.nunit"' StartPage = "" - StartProgram = "C:\Program Files\NUnit 2.2\bin\nunit-gui.exe" + StartProgram = "C:\Program Files\NUnit 2.2.2\bin\nunit-gui.exe" StartURL = "" StartWorkingDirectory = "" StartWithIE = "true" |