|
From: Michael D. <mik...@us...> - 2004-04-29 15:22:49
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16595/NHibernate.Test Modified Files: FooBarTest.cs Log Message: Added a TearDown attribute so it gets rid of the tables after a test is run. Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** FooBarTest.cs 29 Apr 2004 14:00:55 -0000 1.16 --- FooBarTest.cs 29 Apr 2004 15:22:28 -0000 1.17 *************** *** 34,37 **** --- 34,43 ---- } + [TearDown] + public void TearDown() + { + DropSchema(); + } + [Test] [Ignore("don't know how to get aliased name for baz")] |