Jumar Macato
6 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
1 changed files with
10 additions and
0 deletions
-
tests/Avalonia.Animation.UnitTests/KeySplineTests.cs
|
|
|
@ -26,6 +26,16 @@ namespace Avalonia.Animation.UnitTests |
|
|
|
Assert.Equal(4, keySpline.ControlPointY2); |
|
|
|
} |
|
|
|
|
|
|
|
[Theory] |
|
|
|
[InlineData("1,2F,3,4")] |
|
|
|
[InlineData("Foo,Bar,Fee,Buzz")] |
|
|
|
public void Can_Handle_Invalid_String_KeySpline_Via_TypeConverter(string input) |
|
|
|
{ |
|
|
|
var conv = new KeySplineTypeConverter(); |
|
|
|
|
|
|
|
Assert.ThrowsAny<Exception>(() => (KeySpline)conv.ConvertFrom(input)); |
|
|
|
} |
|
|
|
|
|
|
|
[Theory] |
|
|
|
[InlineData(0.00)] |
|
|
|
[InlineData(0.50)] |
|
|
|
|