From: Richard B. <rb...@us...> - 2005-03-22 06:08:08
|
Update of /cvsroot/jcframework/Nunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17680 Modified Files: AtomsFramework.xml Nunit_AtomsFramework.vbproj original db1.mdb Log Message: Unit test for timestamps on interface based persistence Index: Nunit_AtomsFramework.vbproj =================================================================== RCS file: /cvsroot/jcframework/Nunit/Nunit_AtomsFramework.vbproj,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Nunit_AtomsFramework.vbproj 1 Mar 2005 20:51:34 -0000 1.19 +++ Nunit_AtomsFramework.vbproj 22 Mar 2005 06:07:53 -0000 1.20 @@ -86,9 +86,9 @@ HintPath = "..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Windows.Forms.dll" /> <Reference - Name = "AToMSFramework" - AssemblyName = "AToMSFramework" - HintPath = "..\dotnet\bin\AToMSFramework.dll" + Name = "Atoms.Framework" + Project = "{8FFD05CF-E733-4D8E-BC0E-D9DD37B87384}" + Package = "{F184B08F-C81C-45F6-A57F-5ABD9991F28F}" /> </References> <Imports> @@ -215,6 +215,11 @@ BuildAction = "Compile" /> <File + RelPath = "Interfaces\IOptimistic.vb" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Interfaces\ManyToManyClasses.vb" SubType = "Code" BuildAction = "Compile" @@ -225,6 +230,11 @@ BuildAction = "Compile" /> <File + RelPath = "Interfaces\TimestampTests.vb" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Interfaces\ValidatedEmployee.vb" SubType = "Code" BuildAction = "Compile" Index: original db1.mdb =================================================================== RCS file: /cvsroot/jcframework/Nunit/original db1.mdb,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 Binary files /tmp/cvs0YfS3H and /tmp/cvsO086Rb differ Index: AtomsFramework.xml =================================================================== RCS file: /cvsroot/jcframework/Nunit/AtomsFramework.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- AtomsFramework.xml 28 Feb 2005 23:05:47 -0000 1.19 +++ AtomsFramework.xml 22 Mar 2005 06:07:53 -0000 1.20 @@ -367,4 +367,12 @@ </associationTable> </association> + <class name="IOptimistic" table="NPOptimistic" database="MSA" namespace="NunitTests.Interfaces"> + <attribute name="GUIDValue" column="GuidValue" key="primary"/> + <attribute name="Description" column="Description" /> + <attribute name="CreatedDate" column="CreatedDate" timestamp="true" /> + <attribute name="ModifiedDate" column="ModifiedDate" timestamp="true" /> + </class> + + </map> \ No newline at end of file |