Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Services.Tests/Remoting
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15562
Modified Files:
SaoFactoryObjectTests.cs
Log Message:
clean up docs.
add some config to explore autoproxy with remoting exporter - not active atm.
Index: SaoFactoryObjectTests.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Services.Tests/Remoting/SaoFactoryObjectTests.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** SaoFactoryObjectTests.cs 7 Sep 2007 01:59:53 -0000 1.11
--- SaoFactoryObjectTests.cs 9 Oct 2007 22:25:31 -0000 1.12
***************
*** 107,112 ****
Assert.IsNotNull(obj, "Object is null even though a object has been exported.");
- Assert.IsTrue((obj is ISimpleCounter), "Object should implement 'ISimpleCounter' interface.");
Assert.IsTrue(AopUtils.IsAopProxy(obj));
MethodCounter aopCounter = ctx.GetObject("countingBeforeAdvice") as MethodCounter;
--- 107,113 ----
Assert.IsNotNull(obj, "Object is null even though a object has been exported.");
Assert.IsTrue(AopUtils.IsAopProxy(obj));
+ Assert.IsTrue((obj is ISimpleCounter), "Object should implement 'ISimpleCounter' interface.");
+
MethodCounter aopCounter = ctx.GetObject("countingBeforeAdvice") as MethodCounter;
|