From: Michael D. <mik...@us...> - 2004-06-24 15:28:00
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/NHibernate.Test Modified Files: FooBarTest.cs Log Message: Removed an [Ignore] because instead of failing to Load an object with a proxy specified it just ignores the proxy and loads the object anyway. Did this so we could start working on more of the test until I get the proxy going. Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** FooBarTest.cs 23 Jun 2004 21:12:58 -0000 1.26 --- FooBarTest.cs 24 Jun 2004 15:27:51 -0000 1.27 *************** *** 35,40 **** } [Test] - [Ignore("Fails because Proxies are not working.")] public void FetchInitializedCollection() { --- 35,46 ---- } + /// <summary> + /// + /// </summary> + /// <remarks> + /// This test is still not completely working because it depends on Proxies which + /// has not been implemented yet. + /// </remarks> [Test] public void FetchInitializedCollection() { |