public void TestParameterGreaterThanPasses(string parameterName, sbyte?parameterValue, sbyte?valueToCompare, NullableNumericValidator <sbyte> validatorBase) { "Given a new ValidatorBase" .x(() => validatorBase = Validate.That(parameterName, parameterValue)); "Testing that the parameter value is greater than the value to compare against" .x(() => validatorBase.IsGreaterThan(valueToCompare).OtherwiseThrowException()); "Should not result in an exception" .x(() => validatorBase.CurrentException.Should().BeNull()); }
public void TestParameterGreaterThanFails( string parameterName, sbyte?parameterValue, sbyte?valueToCompare, NullableNumericValidator <sbyte> validatorBase, Action act) { "Given a new ValidatorBase" .x(() => validatorBase = Validate.That(parameterName, parameterValue)); "Testing that the parameter value is greater than the value to compare against" .x(() => act = () => validatorBase.IsGreaterThan(valueToCompare).OtherwiseThrowException()); "Should throw an exception" .x(() => act.ShouldThrow <ArgumentOutOfRangeException>() .WithMessage(string.Format(Resources.MustBeGreaterThanX + "\r\nParameter name: {1}", valueToCompare, parameterName))); }