Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Dec 22, 2024
1 parent e24e20c commit e4f9ebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions UnitTests/InternetAddressListTypeConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public void TestIsNotValid ()
{
var converter = TypeDescriptor.GetConverter (typeof (InternetAddressList));
Assert.That (converter.IsValid (""), Is.False);
Assert.That (converter.IsValid (5), Is.False);
}
}
}
1 change: 1 addition & 0 deletions UnitTests/InternetAddressTypeConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public void TestIsNotValid ()
{
var converter = TypeDescriptor.GetConverter (typeof (InternetAddress));
Assert.That (converter.IsValid (""), Is.False);
Assert.That (converter.IsValid (5), Is.False);
}
}
}

0 comments on commit e4f9ebc

Please sign in to comment.