Skip to content

Commit e4f9ebc

Browse files
committed
more tests
1 parent e24e20c commit e4f9ebc

2 files changed

+2
-0
lines changed

UnitTests/InternetAddressListTypeConverterTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public void TestIsNotValid ()
7979
{
8080
var converter = TypeDescriptor.GetConverter (typeof (InternetAddressList));
8181
Assert.That (converter.IsValid (""), Is.False);
82+
Assert.That (converter.IsValid (5), Is.False);
8283
}
8384
}
8485
}

UnitTests/InternetAddressTypeConverterTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public void TestIsNotValid ()
7676
{
7777
var converter = TypeDescriptor.GetConverter (typeof (InternetAddress));
7878
Assert.That (converter.IsValid (""), Is.False);
79+
Assert.That (converter.IsValid (5), Is.False);
7980
}
8081
}
8182
}

0 commit comments

Comments
 (0)