public void AnyOf_WhenValueParameterIsNullOrEmpty_ShouldThrowArgumentException()
        {
            //Arrange
            string value = null;

            //Act
            //Assert
            verbEx.AnyOf(value);
        }
        public void AnyOf_WhenValueParameterIsNullOrEmpty_ShouldThrowArgumentException()
        {
            //Arrange
            verbEx = VerbalExpressions.DefaultExpression;
            string value = null;

            //Act
            //Assert
            verbEx.AnyOf(value);
        }
 public VerbalExpression AnyOf(string value)
 {
     _verbalExpression.AnyOf(value);
     return(this);
 }