[Fat-develop] FAT/src/FAT.Core TestFixtureLoader.cs,1.2,1.3
Brought to you by:
exortech
|
From: <dmc...@us...> - 2004-02-07 18:14:29
|
Update of /cvsroot/fat/FAT/src/FAT.Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6233/src/FAT.Core Modified Files: TestFixtureLoader.cs Log Message: Fixtures TextBox has been changed to a DropDownList containing the names of all FATFixtures in the configured assemblies Index: TestFixtureLoader.cs =================================================================== RCS file: /cvsroot/fat/FAT/src/FAT.Core/TestFixtureLoader.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestFixtureLoader.cs 6 Feb 2004 20:27:33 -0000 1.2 --- TestFixtureLoader.cs 7 Feb 2004 18:11:31 -0000 1.3 *************** *** 62,66 **** } ! public string []FixtureNames { get {return (string [])fixtureNames.ToArray(typeof(string));} } } --- 62,66 ---- } ! public string []FixtureNames { get {fixtureNames.Sort(); return (string [])fixtureNames.ToArray(typeof(string));} } } |