SPRNET-1234

This commit is contained in:
eeichinger
2009-07-26 17:49:40 +00:00
parent 96a447f7c3
commit 6091e9c491
18 changed files with 329 additions and 187 deletions

View File

@@ -27,7 +27,7 @@ using Spring.Validation.Actions;
namespace Spring.Validation
{
public abstract class BaseTestValidator : BaseValidator
public abstract class BaseTestValidator : BaseSimpleValidator
{
private bool _wasCalled;

View File

@@ -129,13 +129,5 @@ namespace Spring.Validation
Assert.AreEqual(0, errors.GetErrors("errors").Count);
Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
}
[Test]
[ExpectedException(typeof(NotSupportedException))]
public void TestNonSupportedValidateMethod()
{
this.Validate("xyz");
}
}
}