Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Tests/Transaction/Interceptor
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15540
Modified Files:
AbstractTransactionAspectTests.cs
Log Message:
clean up docs.
add some config to explore autoproxy with remoting exporter - not active atm.
Index: AbstractTransactionAspectTests.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Tests/Transaction/Interceptor/AbstractTransactionAspectTests.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AbstractTransactionAspectTests.cs 17 Sep 2007 19:16:14 -0000 1.3
--- AbstractTransactionAspectTests.cs 9 Oct 2007 22:25:20 -0000 1.4
***************
*** 147,153 ****
ITransactionAttribute txatt = new ConfigurableTransactionAttribute(shouldRollback);
! //TODO: Note can't use method info on ITestObject.... may need to introduce own method info comparison
! //that doesn't take into account owning type.
! MethodInfo mi = typeof (TestObject).GetMethod("Exceptional");
MethodMapTransactionAttributeSource tas = new MethodMapTransactionAttributeSource();
--- 147,152 ----
ITransactionAttribute txatt = new ConfigurableTransactionAttribute(shouldRollback);
!
! MethodInfo mi = typeof (ITestObject).GetMethod("Exceptional");
MethodMapTransactionAttributeSource tas = new MethodMapTransactionAttributeSource();
|