File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change 1515 */
1616final class KeyFrameTest extends TestCase
1717{
18- /**
19- * @var KeyFrame
20- */
21- private $ subject ;
22-
23- protected function setUp (): void
24- {
25- $ this ->subject = new KeyFrame ();
26- }
27-
2818 /**
2919 * @test
3020 */
3121 public function implementsAtRule (): void
3222 {
33- self ::assertInstanceOf (AtRule::class, $ this ->subject );
23+ $ subject = new KeyFrame ();
24+
25+ self ::assertInstanceOf (AtRule::class, $ subject );
3426 }
3527
3628 /**
3729 * @test
3830 */
3931 public function implementsRenderable (): void
4032 {
41- self ::assertInstanceOf (Renderable::class, $ this ->subject );
33+ $ subject = new KeyFrame ();
34+
35+ self ::assertInstanceOf (Renderable::class, $ subject );
4236 }
4337
4438 /**
4539 * @test
4640 */
4741 public function implementsCommentable (): void
4842 {
49- self ::assertInstanceOf (Commentable::class, $ this ->subject );
43+ $ subject = new KeyFrame ();
44+
45+ self ::assertInstanceOf (Commentable::class, $ subject );
5046 }
5147}
You can’t perform that action at this time.
0 commit comments