From: Michael D. <mik...@us...> - 2004-07-13 19:37:34
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23303/NHibernate.Test Modified Files: CriteriaTest.cs Log Message: made SetUp's call to ExportSchema just like all other setups Index: CriteriaTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CriteriaTest.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CriteriaTest.cs 9 Jun 2004 01:05:46 -0000 1.4 --- CriteriaTest.cs 13 Jul 2004 19:37:25 -0000 1.5 *************** *** 10,23 **** [TestFixture] ! public class CriteriaTest : TestCase { ! [SetUp] ! public void SetUp() { ! ExportSchema( new string[] { "Simple.hbm.xml"}, true ); } [Test] ! public void SimpleSelectTest() { ! // create the objects to search on ISession s1 = sessions.OpenSession(); --- 10,24 ---- [TestFixture] ! public class CriteriaTest : TestCase ! { [SetUp] ! public void SetUp() ! { ! ExportSchema( new string[] { "Simple.hbm.xml"}); } [Test] ! public void SimpleSelectTest() ! { // create the objects to search on ISession s1 = sessions.OpenSession(); *************** *** 66,72 **** s2.Close(); } - - - } } --- 67,70 ---- |