public void TestParameterIsNotPositivePasses(string parameterName, sbyte?parameterValue, NullableNumericValidator <sbyte> validatorBase) { "Given a new ValidatorBase" .x(() => validatorBase = Validate.That(parameterName, parameterValue)); "Testing that the parameter is false" .x(() => validatorBase.IsNotPositive().OtherwiseThrowException()); "Should not result in an exception" .x(() => validatorBase.CurrentException.Should().BeNull()); }
public void TestParameterIsNotPositiveFails(string parameterName, sbyte?parameterValue, NullableNumericValidator <sbyte> validatorBase, Action act) { "Given a new ValidatorBase" .x(() => validatorBase = Validate.That(parameterName, parameterValue)); "Testing that the parameter is false" .x(() => act = () => validatorBase.IsNotPositive().OtherwiseThrowException()); "Should throw an exception" .x(() => act.ShouldThrow <ArgumentOutOfRangeException>() .WithMessage(string.Format(Resources.MustNotBePositive + "\r\nParameter name: {0}", parameterName))); }