From: Richard B. <rb...@us...> - 2004-11-01 21:27:27
|
Update of /cvsroot/jcframework/Nunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26746 Modified Files: AtomsFramework.xml Nunit_AtomsFramework.vbproj original db1.mdb Log Message: New tests to check cache behaviour for collections, and shared table classes that repeat XML information from the parent. Index: Nunit_AtomsFramework.vbproj =================================================================== RCS file: /cvsroot/jcframework/Nunit/Nunit_AtomsFramework.vbproj,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Nunit_AtomsFramework.vbproj 31 Oct 2004 23:08:35 -0000 1.12 +++ Nunit_AtomsFramework.vbproj 1 Nov 2004 21:27:09 -0000 1.13 @@ -70,11 +70,6 @@ AssemblyName = "System.Xml" /> <Reference - Name = "AToMSFramework" - AssemblyName = "AToMSFramework" - HintPath = "..\Atoms_Framework\bin\AToMSFramework.dll" - /> - <Reference Name = "nunit.framework" AssemblyName = "nunit.framework" HintPath = "..\..\..\Program Files\NUnit 2.2\bin\nunit.framework.dll" @@ -90,6 +85,11 @@ AssemblyName = "System.Windows.Forms" HintPath = "..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Windows.Forms.dll" /> + <Reference + Name = "AToMSFramework" + Project = "{8FFD05CF-E733-4D8E-BC0E-D9DD37B87384}" + Package = "{F184B08F-C81C-45F6-A57F-5ABD9991F28F}" + /> </References> <Imports> <Import Namespace = "Microsoft.VisualBasic" /> Index: original db1.mdb =================================================================== RCS file: /cvsroot/jcframework/Nunit/original db1.mdb,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 Binary files /tmp/cvsOj2UxP and /tmp/cvsfw0Efh differ Index: AtomsFramework.xml =================================================================== RCS file: /cvsroot/jcframework/Nunit/AtomsFramework.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- AtomsFramework.xml 31 Oct 2004 23:08:35 -0000 1.11 +++ AtomsFramework.xml 1 Nov 2004 21:27:08 -0000 1.12 @@ -11,8 +11,13 @@ <attribute name="OIDValue" column="oid" key="primary"/> <attribute name="CreatedDate" column="created" timestamp="true"/> <attribute name="ModifiedDate" column="modified" timestamp="true"/> + <attribute name="Field1" column="field1" /> </class> +<!-- Proper XML mapping here would be to not have the OIDValue attribute since it + inherits from the parent class (for shared tables). It is here for testing only. --> <class name="SharedChild" table="SharedClasses" superclass="SharedParent" database="MSA" sharedtablefield="IType" sharedtablevalue="PLN" namespace="NunitTests.InheritedClasses"> + <attribute name="OIDValue" column="oid" key="primary" reference="OIDValue"/> + <attribute name="Field2" column="field2" /> </class> <class name="NPJob" table="NPJobs" database="MSA" namespace="NunitTests.StandardClasses"> |