public void SetUp()
 {
     Matcher = new SubstringConstraint( "hello" ).IgnoreCase;
     GoodValues = new object[] {"Hello", "HellO there", "I said HELLO", "say hello to fred"};
     BadValues = new object[] {"goodbye", "What the hell?", string.Empty, null};
     Description = "String containing \"hello\", ignoring case";
 }
 public void SetUp()
 {
     Matcher = new SubstringConstraint( "hello" );
     GoodValues = new object[] {"hello", "hello there", "I said hello", "say hello to fred"};
     BadValues = new object[] {"goodbye", "What the hell?", string.Empty, null};
     Description = "String containing \"hello\"";
 }