Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22651 Modified Files: ABCProxyTest.cs ABCTest.cs CriteriaTest.cs FooBarTest.cs FumTest.cs NHibernate.Test-1.1.csproj ObjectAssertion.cs SimpleTest.cs Added Files: DemoTest.cs MasterDetailTest.cs MultiTableTest.cs NewPerformanceTest.cs ODMGTest.cs ParentChildTest.cs SQLFunctionsTest.cs Removed Files: BasicTypes.cs ClassWithCompositeIdTest.cs JoinedSubclassTest.cs MapTest.cs NH47.cs NodeFixture.cs SimpleComponentTest.cs SubclassTest.cs UnsavedValueTest.cs Log Message: Created shells for more Test Fixture and move the new ones I made to use to get NHibernate testing up and going to their own namespace because there was some name conflicts with h2.0.3 classes. Index: SimpleTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/SimpleTest.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SimpleTest.cs 8 Jun 2004 11:47:37 -0000 1.3 --- SimpleTest.cs 9 Jun 2004 01:05:46 -0000 1.4 *************** *** 7,11 **** namespace NHibernate.Test { - [TestFixture] public class SimpleTest : TestCase --- 7,10 ---- *************** *** 19,23 **** public void SetUp() { - //log4net.Config.DOMConfigurator.Configure(); ExportSchema( new string[] { "Simple.hbm.xml"} ); } --- 18,21 ---- --- UnsavedValueTest.cs DELETED --- --- NEW FILE: SQLFunctionsTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for SQLFunctionsTest. /// </summary> [TestFixture] public class SQLFunctionsTest { public SQLFunctionsTest() { // // TODO: Add constructor logic here // } } } --- ClassWithCompositeIdTest.cs DELETED --- --- BasicTypes.cs DELETED --- --- NEW FILE: DemoTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for DemoTest. /// </summary> [TestFixture] public class DemoTest { [Test] [Ignore("Test not written yet.")] public void Demo() { } } } --- NH47.cs DELETED --- --- JoinedSubclassTest.cs DELETED --- --- NEW FILE: MasterDetailTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for MasterDetailTest. /// </summary> [TestFixture] public class MasterDetailTest : TestCase { [SetUp] public void SetUp() { ExportSchema(new string[] { "MasterDetail.hbm.xml", "Custom.hbm.xml", "Category.hbm.xml", "INameable.hbm.xml", "SingleSeveral.hbm.xml", "WZ.hbm.xml" }, true); } [Test] [Ignore("Test not yet written")] public void SelfManyToOne() { } [Test] [Ignore("Test not yet written")] public void NonLazyBidrectional() { } [Test] [Ignore("Test not yet written")] public void CollectionQuery() { } [Test] [Ignore("Test not yet written")] public void MasterDetail() { } [Test] [Ignore("Test not yet written")] public void IncomingOutgoing() { } [Test] [Ignore("Test not yet written")] public void Cascading() { } [Test] [Ignore("Test not yet written")] public void NamedQuery() { } [Test] [Ignore("Test not yet written")] public void Serialization() { } [Test] [Ignore("Test not yet written")] public void UpdateLazyCollections() { } [Test] [Ignore("Test not yet written")] public void MultiLevelCascade() { } [Test] [Ignore("Test not yet written")] public void MixNativeAssigned() { } [Test] [Ignore("Test not yet written")] public void CollectionReplace2() { } [Test] [Ignore("Test not yet written")] public void CollectionReplace() { } [Test] [Ignore("Test not yet written")] public void Categories() { } [Test] [Ignore("Test not yet written")] public void CollectionRefresh() { } [Test] [Ignore("Test not yet written")] public void CustomPersister() { } [Test] [Ignore("Test not yet written")] public void Interface() { } [Test] [Ignore("Test not yet written")] public void NoUpdatedManyToOne() { } } } Index: ABCTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/ABCTest.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ABCTest.cs 7 Jun 2004 20:35:43 -0000 1.6 --- ABCTest.cs 9 Jun 2004 01:05:46 -0000 1.7 *************** *** 1,7 **** using System; using NUnit.Framework; using NHibernate; using NHibernate.DomainModel; ! using System.Collections; namespace NHibernate.Test --- 1,9 ---- using System; + using System.Collections; + using NUnit.Framework; using NHibernate; using NHibernate.DomainModel; ! namespace NHibernate.Test --- SimpleComponentTest.cs DELETED --- --- MapTest.cs DELETED --- Index: CriteriaTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CriteriaTest.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CriteriaTest.cs 8 Jun 2004 11:47:37 -0000 1.3 --- CriteriaTest.cs 9 Jun 2004 01:05:46 -0000 1.4 *************** *** 6,10 **** using NUnit.Framework; ! namespace NHibernate.Test { [TestFixture] --- 6,11 ---- using NUnit.Framework; ! namespace NHibernate.Test ! { [TestFixture] *************** *** 13,17 **** [SetUp] public void SetUp() { - //log4net.Config.DOMConfigurator.Configure(); ExportSchema( new string[] { "Simple.hbm.xml"}, true ); } --- 14,17 ---- Index: NHibernate.Test-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHibernate.Test-1.1.csproj,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** NHibernate.Test-1.1.csproj 25 May 2004 17:21:45 -0000 1.23 --- NHibernate.Test-1.1.csproj 9 Jun 2004 01:05:46 -0000 1.24 *************** *** 135,149 **** /> <File ! RelPath = "BasicTypes.cs" ! SubType = "Code" ! BuildAction = "Compile" ! /> ! <File ! RelPath = "ClassWithCompositeIdTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "CriteriaTest.cs" SubType = "Code" BuildAction = "Compile" --- 135,144 ---- /> <File ! RelPath = "CriteriaTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "DemoTest.cs" SubType = "Code" BuildAction = "Compile" *************** *** 160,174 **** /> <File ! RelPath = "JoinedSubclassTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "MapTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "NH47.cs" SubType = "Code" BuildAction = "Compile" --- 155,169 ---- /> <File ! RelPath = "MasterDetailTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "MultiTableTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "NewPerformanceTest.cs" SubType = "Code" BuildAction = "Compile" *************** *** 183,202 **** /> <File ! RelPath = "NodeFixture.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "ObjectAssertion.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "PerformanceTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "SimpleComponentTest.cs" SubType = "Code" BuildAction = "Compile" --- 178,197 ---- /> <File ! RelPath = "ObjectAssertion.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "ODMGTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "ParentChildTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "PerformanceTest.cs" SubType = "Code" BuildAction = "Compile" *************** *** 208,212 **** /> <File ! RelPath = "SubclassTest.cs" SubType = "Code" BuildAction = "Compile" --- 203,207 ---- /> <File ! RelPath = "SQLFunctionsTest.cs" SubType = "Code" BuildAction = "Compile" *************** *** 223,231 **** /> <File - RelPath = "UnsavedValueTest.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "CacheTest\CacheFixture.cs" SubType = "Code" --- 218,221 ---- *************** *** 298,301 **** --- 288,336 ---- /> <File + RelPath = "NHSpecificTest\BasicClassFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\ClassWithCompositeIdFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\JoinedSubclassFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\MapFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\NH47Fixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\NodeFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\SimpleComponentFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\SubclassFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "NHSpecificTest\UnsavedValueFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "SqlCommandTest\SqlDeleteBuilderFixture.cs" SubType = "Code" --- NEW FILE: MultiTableTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for MultiTableTest. /// </summary> [TestFixture] public class MultiTableTest : TestCase { [SetUp] public void SetUp() { ExportSchema(new string[] { "Multi.hbm.xml"}, true); } public void TestJoins() { } public void SubclassCollection() { } public void CollectionOnly() { } public void Queries() { } public void Constraints() { } public void MultiTable() { } public void MutliTableGeneratedId() { } public void MultiTableCollections() { } public void MultiTableManyToOne() { } public void MultiTableNativeId() { } public void Collection() { } public void OneToOne() { } public void CollectionPointer() { } } } --- NEW FILE: ParentChildTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for ParentChildTest. /// </summary> [TestFixture] public class ParentChildTest { public ParentChildTest() { // // TODO: Add constructor logic here // } } } --- SubclassTest.cs DELETED --- Index: FumTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FumTest.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FumTest.cs 8 Jun 2004 11:48:22 -0000 1.4 --- FumTest.cs 9 Jun 2004 01:05:46 -0000 1.5 *************** *** 81,91 **** [Test] [Ignore("Test not yet written")] ! public void CompositeID() { } ! [Test] [Ignore("Test not yet written")] ! public void CompositeIDCollections() { } --- 81,91 ---- [Test] [Ignore("Test not yet written")] ! public void ListIdentifiers() { } ! [Test] [Ignore("Test not yet written")] ! public void CompositeID() { } *************** *** 97,101 **** Fum fum = new Fum( FumKey("fum") ); fum.fum = "fee fi fo"; ! //s.Save(fum); Fumm fumm = new Fumm(); fumm.Fum = fum; --- 97,101 ---- Fum fum = new Fum( FumKey("fum") ); fum.fum = "fee fi fo"; ! //s.Save(fum); commented out in h2.0.3 Fumm fumm = new Fumm(); fumm.Fum = fum; *************** *** 106,110 **** s = sessions.OpenSession(); fumm = (Fumm) s.Load( typeof(Fumm), FumKey("fum") ); ! //s.delete(fumm.Fum); s.Delete(fumm); s.Flush(); --- 106,110 ---- s = sessions.OpenSession(); fumm = (Fumm) s.Load( typeof(Fumm), FumKey("fum") ); ! //s.delete(fumm.Fum); commented out in h2.0.3 s.Delete(fumm); s.Flush(); *************** *** 113,118 **** } - - [Test] [Ignore("Test not yet written")] --- 113,116 ---- *************** *** 123,127 **** [Test] [Ignore("Test not yet written")] ! public void CompositeIDs() { } --- 121,125 ---- [Test] [Ignore("Test not yet written")] ! public void CompositeIDCollections() { } *************** *** 135,147 **** [Test] [Ignore("Test not yet written")] ! public void KeyManyToOne() { } [Test] [Ignore("Test not yet written")] ! public void ListIdentifiers() { } } } --- 133,149 ---- [Test] [Ignore("Test not yet written")] ! public void CompositeIDs() { } + + [Test] [Ignore("Test not yet written")] ! public void KeyManyToOne() { } + + } } Index: ABCProxyTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/ABCProxyTest.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ABCProxyTest.cs 7 Jun 2004 20:35:42 -0000 1.6 --- ABCProxyTest.cs 9 Jun 2004 01:05:46 -0000 1.7 *************** *** 1,7 **** using System; using NUnit.Framework; using NHibernate; using NHibernate.DomainModel; - using System.Collections; namespace NHibernate.Test --- 1,9 ---- using System; + using System.Collections; + using NUnit.Framework; + using NHibernate; using NHibernate.DomainModel; namespace NHibernate.Test --- NEW FILE: ODMGTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for ODMGTest. /// </summary> [TestFixture] public class ODMGTest { public ODMGTest() { // // TODO: Add constructor logic here // } } } Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** FooBarTest.cs 7 Jun 2004 20:35:44 -0000 1.24 --- FooBarTest.cs 9 Jun 2004 01:05:46 -0000 1.25 *************** *** 15,24 **** ExportSchema(new string[] { "FooBar.hbm.xml", ! "Glarch.hbm.xml", ! "Fee.hbm.xml", "Qux.hbm.xml", "Fum.hbm.xml", - "Baz.hbm.xml", - "Simple.hbm.xml", "Fumm.hbm.xml", "Fo.hbm.xml", --- 15,22 ---- ExportSchema(new string[] { "FooBar.hbm.xml", ! "Baz.hbm.xml", "Qux.hbm.xml", + "Glarch.hbm.xml", "Fum.hbm.xml", "Fumm.hbm.xml", "Fo.hbm.xml", *************** *** 26,29 **** --- 24,28 ---- "Many.hbm.xml", "Immutable.hbm.xml" , + "Fee.hbm.xml", //"Vetoer.hbm.xml", "Holder.hbm.xml", *************** *** 31,34 **** --- 30,34 ---- "Stuff.hbm.xml", "Container.hbm.xml", + "Simple.hbm.xml", "XY.hbm.xml" }, true); *************** *** 67,70 **** --- 67,71 ---- } + [Test] public void Sortables() *************** *** 137,140 **** --- 138,142 ---- } + [Test] public void FetchList() *************** *** 164,167 **** --- 166,170 ---- } + [Test] public void BagOneToMany() *************** *** 187,204 **** } [Test] ! [Ignore("won't work without proxy")] ! public void SaveDelete() { - ISession s = sessions.OpenSession(); - Foo f = new Foo(); - s.Save(f); - s.Flush(); - s.Close(); - - s = sessions.OpenSession(); - s.Delete( s.Load( typeof(Foo), f.key ) ); - s.Flush(); - s.Close(); } --- 190,216 ---- } + [Test] ! [Ignore("Test not written yet.")] ! public void QueryLockMode() ! { ! } ! ! [Test] ! [Ignore("Test not written yet.")] ! public void ManyToManyBag() ! { ! } ! ! [Test] ! [Ignore("Test not written yet.")] ! public void IdBag() ! { ! } ! ! [Test] ! [Ignore("Test not written yet.")] ! public void ForceOuterJoin() { } *************** *** 224,227 **** --- 236,562 ---- } + + [Test] + [Ignore("Test not written yet.")] + public void OneToOneGenerator() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Limit() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Custom() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void SaveAddDelete() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void NamedParams() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Dyna() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void FindByCriteria() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void AfterDelete() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CollectionWhere() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ComponentParent() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CollectionCache() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void AssociationId() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CascadeSave() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CompositeKeyPathExpressions() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CollectionsInSelect() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void NewFlushing() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void PersistCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void SaveFlush() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CreateUpdate() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Update() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void UpdateCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Load() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Create() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Callback() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Polymorphism() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void RemoveContains() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CollectionOfSelf() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Find() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Query() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void DeleteRecursive() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Reachability() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void PersistentLifecycle() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Iterators() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Versioning() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void VersionedCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void RecursiveLoad() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ScrollableIterator() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void MultiColumnQueries() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void DeleteTransient() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void UpdateFromTransient() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Databinder() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ArrayOfTimes() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Components() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Enum() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void NoForeignKeyViolations() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void LazyCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void NewSessionLifecycle() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Disconnect() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void OrderBy() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ManyToOne() + { + } + + [Test] + [Ignore("won't work without proxy")] + public void SaveDelete() + { + ISession s = sessions.OpenSession(); + Foo f = new Foo(); + s.Save(f); + s.Flush(); + s.Close(); + + s = sessions.OpenSession(); + s.Delete( s.Load( typeof(Foo), f.key ) ); + s.Flush(); + s.Close(); + } + + [Test] + [Ignore("Test not written yet.")] + public void ProxyArray() + { + } + [Test] public void Cache() *************** *** 249,252 **** --- 584,703 ---- } + + [Test] + [Ignore("Test not written yet.")] + public void FindLoad() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Refresh() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void AutoFlush() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Veto() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void SerializableType() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void AuotFlushCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void UserProvidedConnection() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void CachedCollection() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ComplicatedQuery() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void LoadAfterDelete() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ObjectType() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Any() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void EmbeddedCompositeID() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void AutosaveChildren() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void OrphanDelete() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void TransientOrphanDelete() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void ProxiesInCollections() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void Service() + { + } + + [Test] + [Ignore("Test not written yet.")] + public void PSCache() + { + } + + } } Index: ObjectAssertion.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/ObjectAssertion.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ObjectAssertion.cs 16 Apr 2004 14:06:35 -0000 1.3 --- ObjectAssertion.cs 9 Jun 2004 01:05:46 -0000 1.4 *************** *** 4,7 **** --- 4,8 ---- using NUnit.Framework; using NHibernate.DomainModel; + using NHibernate.DomainModel.NHSpecific; namespace NHibernate.Test --- NEW FILE: NewPerformanceTest.cs --- using System; using NUnit.Framework; namespace NHibernate.Test { /// <summary> /// Summary description for NewPerformanceTest. /// </summary> [TestFixture] public class NewPerformanceTest { public NewPerformanceTest() { // // TODO: Add constructor logic here // } } } --- NodeFixture.cs DELETED --- |