From: Owen R. <exo...@us...> - 2005-09-08 03:47:17
|
Update of /cvsroot/netreflector/NetReflector/src/NetReflector.Test/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6408/src/NetReflector.Test/resources Modified Files: ArrayTestClass.cs TestClass.cs Log Message: attempting to fix long standing broken build by sorting members Index: TestClass.cs =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector.Test/resources/TestClass.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestClass.cs 19 Jun 2005 00:17:33 -0000 1.7 --- TestClass.cs 8 Sep 2005 03:47:09 -0000 1.8 *************** *** 65,69 **** public static string GetXml(DateTime date, string innerTestClassXml) { ! return string.Format(@"<reflectTest><field>field</field><name>foo</name><count>54</count><message>message</message><date>{0}</date>{1}</reflectTest>", date, innerTestClassXml); } --- 65,69 ---- public static string GetXml(DateTime date, string innerTestClassXml) { ! return string.Format(@"<reflectTest><count>54</count><date>{0}</date><field>field</field>{1}<message>message</message><name>foo</name></reflectTest>", date, innerTestClassXml); } Index: ArrayTestClass.cs =================================================================== RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector.Test/resources/ArrayTestClass.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ArrayTestClass.cs 16 Nov 2004 04:41:19 -0000 1.6 --- ArrayTestClass.cs 8 Sep 2005 03:47:09 -0000 1.7 *************** *** 39,44 **** public static string GetXml() { ! return "<array-test><stringArray><string>1</string><string>2</string><string>3</string></stringArray><days />" + ! "<elementArray><element><id>1</id></element><element><id>2</id></element><element><id>3</id></element></elementArray></array-test>"; } --- 39,43 ---- public static string GetXml() { ! return "<array-test><days /><elementArray><element><id>1</id></element><element><id>2</id></element><element><id>3</id></element></elementArray><stringArray><string>1</string><string>2</string><string>3</string></stringArray></array-test>"; } |