#region License
/*
* Copyright 2004 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#endregion
#if NET_2_0
#region Imports
using System;
using System.Reflection;
using NUnit.Framework;
#endregion
namespace Spring.Core{
/// <summary>
/// Unit tests for the MethodGenericArgumentsCountCriteria class.
/// </summary>
/// <author>Bruno Baia</author>
[TestFixture]
public sealed class MethodGenericArgumentsCountCriteriaTests
{
[Test]
public void Instantiation ()
{
MethodGenericArgumentsCountCriteria criteria = new MethodGenericArgumentsCountCriteria();
Assert.AreEqual (0, criteria.ExpectedGenericArgumentCount);
criteria = new MethodGenericArgumentsCountCriteria(10);
Assert.AreEqual(10, criteria.ExpectedGenericArgumentCount);
}
[Test]
[ExpectedException (typeof (ArgumentOutOfRangeException))]
public void InstantiationBailsWithGenericArgumentCountSetToLessThanZero ()
{
MethodGenericArgumentsCountCriteria criteria = new MethodGenericArgumentsCountCriteria(-10);
}
[Test]
[ExpectedException (typeof (ArgumentOutOfRangeException))]
public void BailsWhenExpectedGenericArgumentCountSetToLessThanZero()
{
MethodGenericArgumentsCountCriteria criteria = new MethodGenericArgumentsCountCriteria();
criteria.ExpectedGenericArgumentCount = -12;
}
[Test]
public void IsSatisfied ()
{
MethodGenericArgumentsCountCriteria criteria = new MethodGenericArgumentsCountCriteria();
MethodInfo method = GetType().GetMethod("NoGenericArgument", BindingFlags.Public | BindingFlags.Instance);
Assert.IsTrue(criteria.IsSatisfied(method));
criteria = new MethodGenericArgumentsCountCriteria(1);
method = GetType().GetMethod("OneGenericArgument", BindingFlags.Public | BindingFlags.Instance);
Assert.IsTrue (criteria.IsSatisfied (method));
criteria = new MethodGenericArgumentsCountCriteria(2);
method = GetType().GetMethod("TwoGenericArguments", BindingFlags.Public | BindingFlags.Instance);
Assert.IsTrue (criteria.IsSatisfied (method));
}
[Test]
public void IsNotSatisfiedWithNull ()
{
MethodGenericArgumentsCountCriteria criteria = new MethodGenericArgumentsCountCriteria();
Assert.IsFalse (criteria.IsSatisfied (null));
}
// some methods for testing signatures...
public void NoGenericArgument()
{
}
public void OneGenericArgument<T>()
{
}
public void TwoGenericArguments<T,U>()
{
}
}
}
#endif
|