[Fat-develop] FAT/test/FAT.Test/Core MyOtherStoryFixture.cs,1.1,1.2 TestFixtureLoaderTest.cs,1.2,1.3
Brought to you by:
exortech
|
From: <dmc...@us...> - 2004-02-07 18:14:28
|
Update of /cvsroot/fat/FAT/test/FAT.Test/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6233/test/FAT.Test/Core Modified Files: MyOtherStoryFixture.cs TestFixtureLoaderTest.cs Log Message: Fixtures TextBox has been changed to a DropDownList containing the names of all FATFixtures in the configured assemblies Index: MyOtherStoryFixture.cs =================================================================== RCS file: /cvsroot/fat/FAT/test/FAT.Test/Core/MyOtherStoryFixture.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MyOtherStoryFixture.cs 6 Feb 2004 20:27:34 -0000 1.1 --- MyOtherStoryFixture.cs 7 Feb 2004 18:11:32 -0000 1.2 *************** *** 5,8 **** --- 5,13 ---- namespace FAT.Test.Core { + [FATFixture("theOtherStory")] + public class TheOtherStoryFixture : Assertion + { + } + [FATFixture("myOtherStory")] public class MyOtherStoryFixture : Assertion Index: TestFixtureLoaderTest.cs =================================================================== RCS file: /cvsroot/fat/FAT/test/FAT.Test/Core/TestFixtureLoaderTest.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestFixtureLoaderTest.cs 6 Feb 2004 20:27:34 -0000 1.2 --- TestFixtureLoaderTest.cs 7 Feb 2004 18:11:32 -0000 1.3 *************** *** 43,50 **** mockConfiguration.Verify(); ! AssertEquals(2, fixtureNames.Length); ! Array.Sort(fixtureNames); AssertEquals("myOtherStory", fixtureNames[0]); AssertEquals("myStory", fixtureNames[1]); } --- 43,50 ---- mockConfiguration.Verify(); ! AssertEquals(3, fixtureNames.Length); AssertEquals("myOtherStory", fixtureNames[0]); AssertEquals("myStory", fixtureNames[1]); + AssertEquals("theOtherStory", fixtureNames[2]); } |