Add null star rating display test case

This commit is contained in:
Salman Ahmed 2021-05-14 14:25:46 +03:00
parent 0655825057
commit 34aab11ff3
1 changed files with 11 additions and 0 deletions

View File

@ -33,6 +33,17 @@ public void TestDisplay()
});
}
[Test]
public void TestNullStarRatingDisplay()
{
AddStep("load null", () => Child = new StarRatingDisplay
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Scale = new Vector2(3f),
});
}
[Test]
public void TestChangingStarRatingDisplay()
{