remove $Id keyword
This commit is contained in:
@@ -41,7 +41,6 @@ namespace Spring.Aop.Advice
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Federico Spinazzi (.NET)</author>
|
||||
/// <author>Aleksandar Seovic (.NET)</author>
|
||||
/// <version>$Id: DebugAdvice.cs,v 1.1 2007/08/08 07:45:36 markpollack Exp $</version>
|
||||
/// <seealso cref="System.Console"/>
|
||||
public sealed class DebugAdvice : IMethodInterceptor
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aop.Config
|
||||
/// This class contains tests for the custom aop namespace.
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: AopNamespaceParserTests.cs,v 1.7 2007/08/09 03:06:37 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class AopNamespaceParserTests
|
||||
{
|
||||
|
||||
@@ -38,7 +38,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: AbstractMethodInvocationTests.cs,v 1.2 2008/02/06 18:29:05 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public abstract class AbstractMethodInvocationTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Aop.Framework.Adapter
|
||||
/// Unit tests for the UnknownAdviceTypeException class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: UnknownAdviceTypeExceptionTests.cs,v 1.2 2006/04/09 07:19:05 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class UnknownAdviceTypeExceptionTests
|
||||
{
|
||||
|
||||
@@ -38,7 +38,6 @@ namespace Spring.Aop.Framework
|
||||
/// Unit tests for the AopContext class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: AopContextTests.cs,v 1.6 2007/05/30 21:06:25 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AopContextTests
|
||||
{
|
||||
|
||||
@@ -38,7 +38,6 @@ namespace Spring.Aop.Framework.AutoProxy
|
||||
/// Tests for auto proxy creation combined with factory object and circular references.
|
||||
/// </summary>
|
||||
/// <author>Erich Eichinger (.NET)</author>
|
||||
/// <version>$Id: AdvisorAutoProxyCreatorCircularReferencesTests.cs,v 1.4 2007/09/07 01:53:01 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class AdvisorAutoProxyCreatorCircularReferencesTests
|
||||
{
|
||||
|
||||
@@ -37,7 +37,6 @@ namespace Spring.Aop.Framework.AutoProxy
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Mark Pollack (.NET)</author>
|
||||
/// <version>$Id: AdvisorAutoProxyCreatorTests.cs,v 1.4 2007/08/01 17:56:25 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class AdvisorAutoProxyCreatorTests
|
||||
{
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace Spring.Aop.Framework.AutoProxy
|
||||
/// This is simple implementation of IFactoryObject that creates a TestObject.
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: CreatesTestObject.cs,v 1.1 2007/09/07 01:53:02 markpollack Exp $</version>
|
||||
public class CreatesTestObject : IFactoryObject, IInitializingObject
|
||||
{
|
||||
private bool initialized = false;
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Spring.Aop.Framework.AutoProxy
|
||||
/// Tests for ObjectNameAutoProxyCreator functionality
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: ObjectNameAutoProxyCreatorTests.cs,v 1.6 2007/09/07 01:53:01 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class ObjectNameAutoProxyCreatorTests
|
||||
{
|
||||
|
||||
@@ -40,7 +40,6 @@ namespace Spring.Aop.Framework.AutoProxy
|
||||
/// LogicalThreadContext.
|
||||
/// </remarks>
|
||||
/// <author>Mark Pollack (.NET)</author>
|
||||
/// <version>$Id: OrderedLogicalThreadContextCheckAdvisor.cs,v 1.2 2006/09/15 21:25:17 markpollack Exp $</version>
|
||||
public class OrderedLogicalThreadContextCheckAdvisor : StaticMethodMatcherPointcutAdvisor, IInitializingObject
|
||||
{
|
||||
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: CountingAfterReturningAdvice.cs,v 1.2 2007/03/16 04:01:47 aseovic Exp $</version>
|
||||
[Serializable]
|
||||
public class CountingAfterReturningAdvice : MethodCounter, IAfterReturningAdvice
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: CountingBeforeAdvice.cs,v 1.6 2007/03/16 04:01:47 aseovic Exp $</version>
|
||||
[Serializable]
|
||||
public class CountingBeforeAdvice : MethodCounter, IMethodBeforeAdvice
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Juergen Hoeller</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: CountingMultiAdvice.cs,v 1.1 2006/08/10 18:45:57 bbaia Exp $</version>
|
||||
public class CountingMultiAdvice : MethodCounter,
|
||||
IMethodBeforeAdvice, IAfterReturningAdvice, IThrowsAdvice
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: CountingThrowsAdvice.cs,v 1.2 2007/03/16 04:01:47 aseovic Exp $</version>
|
||||
[Serializable]
|
||||
public class CountingThrowsAdvice : MethodCounter, IThrowsAdvice
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Aop.Framework
|
||||
/// Unit tests for the DynamicMethodInvocation class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: DynamicMethodInvocationTests.cs,v 1.2 2008/02/06 18:29:05 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class DynamicMethodInvocationTests : AbstractMethodInvocationTests
|
||||
{
|
||||
|
||||
@@ -54,7 +54,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Juergen Hoeller</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: AbstractAopProxyTests.cs,v 1.21 2008/05/21 08:04:52 bbaia Exp $</version>
|
||||
public abstract class AbstractAopProxyTests
|
||||
{
|
||||
protected MockTargetSource mockTargetSource = new MockTargetSource();
|
||||
|
||||
@@ -40,7 +40,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: AopUtilsTests.cs,v 1.2 2008/03/21 10:49:37 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AopUtilsTests
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// Unit tests for the CachedAopProxyFactoryTests class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: CachedAopProxyFactoryTests.cs,v 1.1 2007/08/04 01:20:11 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class CachedAopProxyFactoryTests : DefaultAopProxyFactoryTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Juergen Hoeller</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: CompositionAopProxyTests.cs,v 1.4 2007/08/02 04:15:37 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class CompositionAopProxyTests : AbstractAopProxyTests
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Juergen Hoeller</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: DecoratorAopProxyTests.cs,v 1.6 2008/05/21 08:04:52 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class DecoratorAopProxyTests : AbstractAopProxyTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// Unit tests for the DefaultAopProxyFactory class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: DefaultAopProxyFactoryTests.cs,v 1.1 2007/08/04 01:20:11 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class DefaultAopProxyFactoryTests
|
||||
{
|
||||
|
||||
@@ -38,7 +38,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// Additional and overridden tests for the inheritance-based proxy.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: InheritanceAopProxyTests.cs,v 1.2 2008/03/03 09:29:17 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class InheritanceAopProxyTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Aop.Framework.DynamicProxy
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Bruno Baia (.NET)</author>
|
||||
/// <version>$Id: MockTargetSource.cs,v 1.1 2006/08/10 18:45:58 bbaia Exp $</version>
|
||||
public class MockTargetSource : ITargetSource
|
||||
{
|
||||
private object _target;
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Aop.Framework
|
||||
/// Unit tests for the HashtableCachingAdvisorChainFactory class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: HashtableCachingAdvisorChainFactoryTests.cs,v 1.2 2006/04/09 07:19:05 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class HashtableCachingAdvisorChainFactoryTests
|
||||
{
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: ITimeStamped.cs,v 1.1 2004/08/01 10:20:20 choyrim Exp $</version>
|
||||
public interface ITimeStamped
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: MethodCounter.cs,v 1.2 2007/03/16 04:01:47 aseovic Exp $</version>
|
||||
[Serializable]
|
||||
public class MethodCounter
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Aop.Framework
|
||||
/// Unit tests for the ProxyConfig class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ProxyConfigTests.cs,v 1.2 2006/04/09 07:19:05 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ProxyConfigTests
|
||||
{
|
||||
|
||||
@@ -59,7 +59,6 @@ namespace Spring.Aop.Framework
|
||||
/// <author>Federico Spinazzi (.NET)</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <author>Aleksandar Seovic (.NET)</author>
|
||||
/// <version>$Id: ProxyFactoryObjectTests.cs,v 1.35 2007/12/07 17:59:31 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ProxyFactoryObjectTests
|
||||
{
|
||||
|
||||
@@ -42,7 +42,6 @@ namespace Spring.Aop.Framework
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <author>Rick Evans (.NET)</author>
|
||||
/// <version>$Id: ProxyFactoryTests.cs,v 1.22 2008/03/21 10:49:38 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ProxyFactoryTests
|
||||
{
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Spring.Aop.Framework
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: ReflectiveMethodInvocationTests.cs,v 1.8 2008/02/06 18:29:05 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class ReflectiveMethodInvocationTests : AbstractMethodInvocationTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Interceptor
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: NopInterceptor.cs,v 1.6 2008/01/14 20:49:47 oakinger Exp $</version>
|
||||
public class NopInterceptor : IMethodBeforeAdvice
|
||||
{
|
||||
protected int instanceId;
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Support
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <author>Ronald Wildenberg</author>
|
||||
/// <version>$Id: AttributeMatchMethodPointcutTests.cs,v 1.3 2007/05/21 16:44:08 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AttributeMatchMethodPointcutTests
|
||||
{
|
||||
|
||||
@@ -39,7 +39,6 @@ namespace Spring.Aop.Support
|
||||
/// </remarks>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: DelegatingIntroductionInterceptorTests.cs,v 1.6 2004/10/10 08:01:49 gcaprio Exp $</version>
|
||||
[TestFixture]
|
||||
public class DelegatingIntroductionInterceptorTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Aop.Support
|
||||
/// Unit tests for the RootTypeFilter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: RootTypeFilterTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class RootTypeFilterTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Support
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Choy Rim (.NET)</author>
|
||||
/// <version>$Id: TypeFiltersTests.cs,v 1.2 2005/07/21 16:01:12 springboy Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class TypeFiltersTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop.Target
|
||||
/// Unit tests for the EmptyTargetSource class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: EmptyTargetSourceTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class EmptyTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Aop.Target
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Federico Spinazzi (.NET)</author>
|
||||
/// <version>$Id: HotSwappableTargetSourceTests.cs,v 1.4 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class HotSwappableTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -37,7 +37,6 @@ namespace Spring.Aop.Target
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Federico Spinazzi</author>
|
||||
/// <version>$Id: PrototypeTargetSourceTests.cs,v 1.8 2007/07/28 07:33:22 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class PrototypeTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -26,8 +26,6 @@ namespace Spring.Aop.Target
|
||||
/// </summary>
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Federico Spinazzi (.Net)</author>
|
||||
/// <version> $Id: SimplePoolTargetSourceTests.cs,v 1.3 2006/02/08 08:31:05 aseovic Exp $
|
||||
/// </version>
|
||||
[TestFixture]
|
||||
public class SimplePoolTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Aop.Target
|
||||
/// Unit tests for the SingletonTargetSource class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: SingletonTargetSourceTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class SingletonTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -27,8 +27,6 @@ namespace Spring.Aop.Target
|
||||
{
|
||||
/// <author>Rod Johnson</author>
|
||||
/// <author>Federico Spinazzi</author>
|
||||
/// <version> $Id: ThreadLocalTargetSourceTests.cs,v 1.5 2006/11/13 07:04:51 markpollack Exp $
|
||||
/// </version>
|
||||
[TestFixture]
|
||||
public class ThreadLocalTargetSourceTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop
|
||||
/// Unit tests for the TrueMethodMatcher class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: TrueMethodMatcherTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class TrueMethodMatcherTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Aop
|
||||
/// Unit tests for the TruePointcut class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: TruePointcutTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class TruePointcutTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Aop
|
||||
/// Unit tests for the TrueTypeFilter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: TrueTypeFilterTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class TrueTypeFilterTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring
|
||||
/// Unit tests for all of the exception classes in the Spring.Aop library...
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: AopExceptionTests.cs,v 1.3 2006/04/09 07:19:04 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AopExceptionTests : ExceptionsTest
|
||||
{
|
||||
|
||||
@@ -37,7 +37,6 @@ namespace Spring.Aspects.Cache
|
||||
/// Unit tests for the CacheParameterAdvice class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: CacheAspectIntegrationTests.cs,v 1.4 2007/08/03 14:38:39 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class CacheAspectIntegrationTests
|
||||
{
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Spring.Aspects.Cache
|
||||
/// Unit tests for the CacheParameterAdvice class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: CacheParameterAdviceTests.cs,v 1.6 2007/04/01 15:05:33 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class CacheParameterAdviceTests
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aspects.Cache
|
||||
/// Unit tests for the CacheResultAdvice class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: CacheResultAdviceTests.cs,v 1.4 2007/08/22 20:16:51 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class CacheResultAdviceTests
|
||||
{
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Spring.Aspects.Cache
|
||||
/// Unit tests for the InvalidateCacheAdvice class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: InvalidateCacheAdviceTests.cs,v 1.4 2007/04/01 15:05:34 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class InvalidateCacheAdviceTests
|
||||
{
|
||||
|
||||
@@ -39,7 +39,6 @@ namespace Spring.Aspects.Exceptions
|
||||
/// This class contains tests for ExceptionHandlerAdvice
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: ExceptionHandlerAspectIntegrationTests.cs,v 1.6 2008/02/26 00:03:43 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class ExceptionHandlerAspectIntegrationTests
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aspects.Logging
|
||||
/// This class contains tests for SimpleLoggingAdvice
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: SimpleLoggingAdviceTests.cs,v 1.4 2008/04/04 14:59:47 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class SimpleLoggingAdviceTests
|
||||
{
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace Spring.Aspects.Logging
|
||||
/// SimpleLoggingAdvice for testing purposes.
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: TestableSimpleLoggingAdvice.cs,v 1.2 2007/12/06 17:17:24 markpollack Exp $</version>
|
||||
public class TestableSimpleLoggingAdvice : SimpleLoggingAdvice
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Aspects
|
||||
/// This class contains tests for RetryAdvice
|
||||
/// </summary>
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: RetryAdviceTests.cs,v 1.3 2008/03/17 20:25:41 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class RetryAdviceTests
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace Spring.Aspects.Validation
|
||||
/// Unit tests for the CacheParameterAdvice class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: ParameterValidationAdviceTests.cs,v 1.2 2008/04/02 23:00:46 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ParameterValidationAdviceTests
|
||||
{
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
<!--
|
||||
Test that inner object for target means that we can use
|
||||
autowire without ambiguity from target and proxy.
|
||||
$Id: innerBeanTarget.xml,v 1.4 2005/03/05 23:54:02 gcaprio Exp $
|
||||
-->
|
||||
|
||||
<objects xmlns="http://www.springframework.net"
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Tests for throws advice.
|
||||
$Id: throwsAdvice.xml,v 1.6 2007/03/09 17:44:40 aseovic Exp $
|
||||
-->
|
||||
<objects xmlns="http://www.springframework.net">
|
||||
<!-- Simple target -->
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Caching
|
||||
/// that derived classes maybe rely on this default behaviour
|
||||
/// </summary>
|
||||
/// <author>Erich Eichinger</author>
|
||||
/// <version>$Id: AbstractCacheTests.cs,v 1.1 2007/08/25 14:26:36 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public class AbstractCacheTests
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Caching
|
||||
///
|
||||
/// </summary>
|
||||
/// <author>Erich Eichinger</author>
|
||||
/// <version>$Id: BaseCacheAttributeTests.cs,v 1.1 2007/08/29 17:30:00 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public class BaseCacheAttributeTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the AbstractQueue class.
|
||||
/// </summary>
|
||||
/// <author>Griffin Caprio</author>
|
||||
/// <version>$Id: AbstractQueueTests.cs,v 1.7 2006/09/30 18:39:24 gcaprio Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AbstractQueueTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the HashedSet class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: HashedSetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class HashedSetTests : SetTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the HybridSet class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: HybridSetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class HybridSetTests : SetTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the ImmutableSet wrapper class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ImmutableSetTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class ImmutableSetTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the ListSet class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ListSetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class ListSetTests : SetTests
|
||||
{
|
||||
|
||||
@@ -47,7 +47,6 @@ namespace Spring.Collections
|
||||
/// </p>
|
||||
/// </remarks>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: SetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
public abstract class SetTests
|
||||
{
|
||||
protected static readonly object StuffOne = "This Is";
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the SortedSet class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: SortedSetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public class SortedSetTests : SetTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Collections
|
||||
/// Unit tests for the static methods of the Set class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: StaticSetTests.cs,v 1.3 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class StaticSetTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Context
|
||||
/// Unit tests for all of the exception classes in the Spring.Context library...
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ContextExceptionTests.cs,v 1.2 2006/04/09 07:19:06 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ContextExceptionTests : ExceptionsTest
|
||||
{
|
||||
|
||||
@@ -28,8 +28,6 @@ using NUnit.Framework;
|
||||
|
||||
namespace Spring.Context.Support
|
||||
{
|
||||
/// <author></author>
|
||||
/// <version>$Id: AbstractMessageSourceTests.cs,v 1.6 2007/08/23 14:31:18 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class AbstractMessageSourceTests : AbstractMessageSource
|
||||
{
|
||||
|
||||
@@ -26,7 +26,6 @@ namespace Spring.Context.Support
|
||||
|
||||
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: Assembler.cs,v 1.2 2007/07/17 14:55:47 oakinger Exp $</version>
|
||||
public class Assembler
|
||||
{
|
||||
private Service service;
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Context.Support
|
||||
/// Unit tests for the ContextRegistry class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ContextRegistryTests.cs,v 1.9 2008/03/21 10:49:38 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ContextRegistryTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Context.Support
|
||||
/// Unit tests for the DelegatingMessageSource class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: DelegatingMessageSourceTests.cs,v 1.3 2006/04/09 07:19:07 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class DelegatingMessageSourceTests
|
||||
{
|
||||
|
||||
@@ -23,7 +23,6 @@ using Spring.Objects.Factory;
|
||||
namespace Spring.Context.Support
|
||||
{
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: Logic.cs,v 1.1 2007/07/10 05:48:37 markpollack Exp $</version>
|
||||
public class Logic : IObjectNameAware
|
||||
{
|
||||
|
||||
|
||||
@@ -27,7 +27,6 @@ namespace Spring.Context.Support
|
||||
/// Unit tests for the NullMessageSource class.
|
||||
/// </summary>
|
||||
/// <author></author>
|
||||
/// <version>$Id: NullMessageSourceTests.cs,v 1.3 2007/07/02 21:24:48 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class NullMessageSourceTests
|
||||
{
|
||||
|
||||
@@ -41,7 +41,6 @@ namespace Spring.Context.Support
|
||||
/// Unit tests for the ResourceSetMessageSource class.
|
||||
/// </summary>
|
||||
/// <author></author>
|
||||
/// <version>$Id: ResourceSetMessageSourceTests.cs,v 1.13 2007/07/18 21:26:07 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ResourceSetMessageSourceTests
|
||||
{
|
||||
|
||||
@@ -23,7 +23,6 @@ using System;
|
||||
namespace Spring.Context.Support
|
||||
{
|
||||
/// <author>Mark Pollack</author>
|
||||
/// <version>$Id: Service.cs,v 1.1 2007/07/10 05:48:37 markpollack Exp $</version>
|
||||
public class Service : IApplicationContextAware, IMessageSourceAware, IDisposable
|
||||
{
|
||||
private IApplicationContext applicationContext;
|
||||
|
||||
@@ -29,8 +29,6 @@ namespace Spring.Context.Support
|
||||
/// <summary>
|
||||
/// Unit tests for the StaticMessageSource class.
|
||||
/// </summary>
|
||||
/// <author></author>
|
||||
/// <version>$Id: StaticMessageSourceTests.cs,v 1.9 2007/07/24 17:26:40 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class StaticMessageSourceTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Core
|
||||
/// ControlFlowFactory class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ControlFlowFactoryTests.cs,v 1.2 2006/04/09 07:24:48 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ControlFlowFactoryTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Core.IO
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <author>Federico Spinazzi</author>
|
||||
/// <version>$Id: AssemblyResourceTest.cs,v 1.10 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class AssemblyResourceTest
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.IO
|
||||
/// Unit tests for the ConfigurableResourceLoader class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: ConfigurableResourceLoaderTests.cs,v 1.6 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ConfigurableResourceLoaderTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.IO
|
||||
/// Common Unit tests for all FileSystemResource derived classes.
|
||||
/// </summary>
|
||||
/// <author>Erich Eichinger</author>
|
||||
/// <version>$Id: FileSystemResourceCommonTests.cs,v 1.4 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
public abstract class FileSystemResourceCommonTests
|
||||
{
|
||||
protected const string TemporaryFileName = "temp.file";
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.IO
|
||||
/// Unit tests for the FileSystemResourceTest class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: FileSystemResourceTests.cs,v 1.9 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class FileSystemResourceTests : FileSystemResourceCommonTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.IO
|
||||
/// Unit tests for the InputStreamResource class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: InputStreamResourceTests.cs,v 1.5 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class InputStreamResourceTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.IO
|
||||
/// Unit tests for the ResourceConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: ResourceConverterTests.cs,v 1.7 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ResourceConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.IO
|
||||
/// Unit tests for the ConfigurableResourceLoader class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: ResourceHandlerRegistryTests.cs,v 1.4 2007/08/08 17:49:59 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class ResourceHandlerRegistryTests
|
||||
{
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Spring.Core
|
||||
/// Unit tests for the MethodGenericArgumentsCountCriteria class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: MethodGenericArgumentsCountCriteriaTests.cs,v 1.1 2007/08/04 01:05:52 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class MethodGenericArgumentsCountCriteriaTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core
|
||||
/// Unit tests for the MethodParametersCountCriteria class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: MethodParametersCountCriteriaTests.cs,v 1.3 2007/09/20 14:35:29 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class MethodParametersCountCriteriaTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Core
|
||||
/// Unit tests for the MethodParametersCriteria class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: MethodParametersCriteriaTests.cs,v 1.2 2007/09/20 14:20:47 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class MethodParametersCriteriaTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core
|
||||
/// <summary>
|
||||
/// Unit tests for the MethodReturnTypeCriteria class.
|
||||
/// </summary>
|
||||
/// <version>$Id: MethodReturnTypeCriteriaTests.cs,v 1.1 2007/08/04 01:05:52 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class MethodReturnTypeCriteriaTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core
|
||||
/// Unit tests for the OrderComparator class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: OrderComparatorTests.cs,v 1.2 2006/04/09 07:24:48 markpollack Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class OrderComparatorTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the CredentialConverter class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: CredentialConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class CredentialConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// <summary>
|
||||
/// Unit tests for the CustomNumberConverter class.
|
||||
/// </summary>
|
||||
/// <version>$Id: CustomNumberConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class CustomNumberConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the FileInfoConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: FileInfoConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class FileInfoConverterTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the NameValueConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: NameValueConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class NameValueConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the RGBColorConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: RGBColorConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class RGBColorConverterTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the RegexConverter class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: RegexConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class RegexConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the RegistryKeyConverter class.
|
||||
/// </summary>
|
||||
/// <author>Aleksandar Seovic</author>
|
||||
/// <version>$Id: RegistryKeyConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class RegistryKeyConverterTests
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// <summary>
|
||||
/// Unit tests for the RuntimeTypeConverter class.
|
||||
/// </summary>
|
||||
/// <version>$Id: RuntimeTypeConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public class RuntimeTypeConverterTests
|
||||
{
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the StreamConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: StreamConverterTests.cs,v 1.1 2007/07/31 18:21:01 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class StreamConverterTests
|
||||
{
|
||||
|
||||
@@ -34,7 +34,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the StringArrayConverter class.
|
||||
/// </summary>
|
||||
/// <author>Rick Evans</author>
|
||||
/// <version>$Id: StringArrayConverterTests.cs,v 1.1 2007/07/31 18:21:02 bbaia Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class StringArrayConverterTests
|
||||
{
|
||||
|
||||
@@ -32,7 +32,6 @@ namespace Spring.Core.TypeConversion
|
||||
/// Unit tests for the TimeSpanConverter class.
|
||||
/// </summary>
|
||||
/// <author>Bruno Baia</author>
|
||||
/// <version>$Id: TimeSpanConverterTests.cs,v 1.2 2007/08/29 17:29:41 oakinger Exp $</version>
|
||||
[TestFixture]
|
||||
public sealed class TimeSpanConverterTests
|
||||
{
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user