Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Geokureli committed Mar 8, 2024
1 parent db17ea2 commit 6106af8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/unit/src/flixel/group/FlxSpriteContainerTest.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package flixel.group;

import flixel.FlxSprite;
import flixel.math.FlxRect;
import massive.munit.Assert;

class FlxSpriteContainerTest extends FlxSpriteGroupTest
{
override function before()
{
group = new FlxSpriteContainer();
for (i in 0...10)
group.add(new FlxSpriteContainer());
}
}

0 comments on commit 6106af8

Please sign in to comment.