Browse Source
Fix unit test - still fails though..
pull/2661/head
Jumar Macato
7 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
1 changed files with
9 additions and
1 deletions
-
tests/Avalonia.Animation.UnitTests/AnimationGeneralTests.cs
|
|
|
@ -75,6 +75,10 @@ namespace Avalonia.Animation.UnitTests |
|
|
|
{ |
|
|
|
using (UnitTestApplication.Start(TestServices.RealStyler)) |
|
|
|
{ |
|
|
|
|
|
|
|
// initialize SCB handler
|
|
|
|
var initSCB = new SolidColorBrush(); |
|
|
|
|
|
|
|
var kf1 = new KeyFrame() |
|
|
|
{ |
|
|
|
Setters = |
|
|
|
@ -114,7 +118,7 @@ namespace Avalonia.Animation.UnitTests |
|
|
|
var root = new TestRoot |
|
|
|
{ |
|
|
|
Clock = testClk, |
|
|
|
Style = |
|
|
|
Styles = |
|
|
|
{ |
|
|
|
new Style(x => x.OfType<Border>().Class("Rect")) |
|
|
|
{ |
|
|
|
@ -126,6 +130,10 @@ namespace Avalonia.Animation.UnitTests |
|
|
|
new Setter( |
|
|
|
Border.WidthProperty, |
|
|
|
100), |
|
|
|
}, |
|
|
|
Animations = |
|
|
|
{ |
|
|
|
animation |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
|