public void Constraint_should_match_when_expected_and_actual_are_enumerables()
 {
     constraintField = new EqualityArgumentConstraint(new string[] { "some string" });
     Assert.That(constraintField.IsValid(new string[] { "some string" }), Is.True);
 }