mirror of https://github.com/ppy/osu
Add null star rating display test case
This commit is contained in:
parent
0655825057
commit
34aab11ff3
|
@ -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]
|
[Test]
|
||||||
public void TestChangingStarRatingDisplay()
|
public void TestChangingStarRatingDisplay()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue