Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CfgTest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24005/CfgTest
Modified Files:
ConfigurationFixture.cs
Log Message:
removed copying of hibernate.cfg.xml from TestFixture to the prebuild event
and to the "build" target in nant.
Index: ConfigurationFixture.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CfgTest/ConfigurationFixture.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ConfigurationFixture.cs 20 Jul 2004 13:52:52 -0000 1.4
--- ConfigurationFixture.cs 23 Jul 2004 14:51:14 -0000 1.5
***************
*** 13,29 ****
public class ConfigurationFixture
{
-
- [SetUp]
- public void SetUp()
- {
- System.IO.File.Copy("..\\..\\hibernate.cfg.xml", "hibernate.cfg.xml", true);
- }
-
- [TearDown]
- public void TearDown()
- {
- System.IO.File.Delete("hibernate.cfg.xml");
- }
-
/// <summary>
/// Verify that NHibernate can read the configuration from a hibernate.cfg.xml
--- 13,16 ----
|