[Fat-develop] FAT/test/FAT.Test/Core ConfigurationTest.cs,1.1,1.2
Brought to you by:
exortech
|
From: <exo...@us...> - 2004-01-15 00:57:02
|
Update of /cvsroot/fat/FAT/test/FAT.Test/Core
In directory sc8-pr-cvs1:/tmp/cvs-serv19380/test/FAT.Test/Core
Modified Files:
ConfigurationTest.cs
Log Message:
commits to fat will now be sent out on developer mailing list
Index: ConfigurationTest.cs
===================================================================
RCS file: /cvsroot/fat/FAT/test/FAT.Test/Core/ConfigurationTest.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ConfigurationTest.cs 14 Dec 2003 21:30:28 -0000 1.1
--- ConfigurationTest.cs 15 Jan 2004 00:56:58 -0000 1.2
***************
*** 34,38 ****
}
! [Test, ExpectedException(typeof(ConfigurationException))]
public void MissingAssembliesElement()
{
--- 34,38 ----
}
! [Test, ExpectedException(typeof(ConfigurationException)), Ignore("is this necessary to verify?")]
public void MissingAssembliesElement()
{
***************
*** 57,60 ****
--- 57,69 ----
ConfigurationFactory.Create();
}
+
+ [Test]
+ public void CreateTestFileScanner()
+ {
+ string xml = String.Format(@"<FAT><TestPaths><TestPath>foo</TestPath></TestPaths></FAT>");
+ ITestFileScanner scanner = new FATConfiguration(LoadXml(xml)).TestFileScanner;
+
+ AssertNotNull(scanner);
+ }
}
}
|