From: Owen R. <exo...@us...> - 2004-07-06 05:13:59
|
Update of /cvsroot/netreflector/NetReflector/src/NetReflector.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17404/src/NetReflector.Test Modified Files: NetReflectorTest.csproj NetReflectorTypeTableTest.cs Log Message: support for enums in netreflector Index: NetReflectorTest.csproj =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector.Test/NetReflectorTest.csproj,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** NetReflectorTest.csproj 21 Jan 2004 09:42:48 -0000 1.8 --- NetReflectorTest.csproj 6 Jul 2004 05:13:20 -0000 1.9 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{A4C5FB23-D9F7-48B7-9E81-F2EFB90F991E}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{A4C5FB23-D9F7-48B7-9E81-F2EFB90F991E}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "Exortech.NetReflector.Test" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" *************** *** 84,87 **** --- 91,99 ---- Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" /> + <Reference + Name = "System.Data" + AssemblyName = "System.Data" + HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.Data.dll" + /> </References> </Build> *************** *** 119,122 **** --- 131,139 ---- /> <File + RelPath = "resources\EnumTestClass.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "resources\HashTestClass.cs" SubType = "Code" *************** *** 164,167 **** --- 181,189 ---- /> <File + RelPath = "Serialisers\XmlDocumentationGeneratorTest.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Serialisers\XmlMemberSerialiserTest.cs" SubType = "Code" Index: NetReflectorTypeTableTest.cs =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector.Test/NetReflectorTypeTableTest.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NetReflectorTypeTableTest.cs 5 Nov 2003 08:29:56 -0000 1.1 --- NetReflectorTypeTableTest.cs 6 Jul 2004 05:13:20 -0000 1.2 *************** *** 26,30 **** table.Add(Assembly.GetExecutingAssembly()); ! AssertEquals(7, table.Count); AssertEquals(typeof(TestClass), table["reflectTest"].Type); AssertEquals(typeof(TestInnerClass), table["inner"].Type); --- 26,30 ---- table.Add(Assembly.GetExecutingAssembly()); ! AssertEquals(8, table.Count); AssertEquals(typeof(TestClass), table["reflectTest"].Type); AssertEquals(typeof(TestInnerClass), table["inner"].Type); *************** *** 43,47 **** table.Add(Assembly.GetExecutingAssembly()); ! AssertEquals(7, table.Count); } --- 43,47 ---- table.Add(Assembly.GetExecutingAssembly()); ! AssertEquals(8, table.Count); } *************** *** 75,79 **** NetReflectorTypeTable table = new NetReflectorTypeTable(); table.Add(System.IO.Directory.GetCurrentDirectory(), "*Test.dll"); ! AssertEquals(8, table.Count); AssertNotNull("Plugin type not found", table["plugin"]); AssertNotNull("Array-test type not found", table["array-test"]); --- 75,79 ---- NetReflectorTypeTable table = new NetReflectorTypeTable(); table.Add(System.IO.Directory.GetCurrentDirectory(), "*Test.dll"); ! AssertEquals(9, table.Count); AssertNotNull("Plugin type not found", table["plugin"]); AssertNotNull("Array-test type not found", table["array-test"]); |