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 15
15
*/
16
16
final class KeyFrameTest extends TestCase
17
17
{
18
- /**
19
- * @var KeyFrame
20
- */
21
- private $ subject ;
22
-
23
- protected function setUp (): void
24
- {
25
- $ this ->subject = new KeyFrame ();
26
- }
27
-
28
18
/**
29
19
* @test
30
20
*/
31
21
public function implementsAtRule (): void
32
22
{
33
- self ::assertInstanceOf (AtRule::class, $ this ->subject );
23
+ $ subject = new KeyFrame ();
24
+
25
+ self ::assertInstanceOf (AtRule::class, $ subject );
34
26
}
35
27
36
28
/**
37
29
* @test
38
30
*/
39
31
public function implementsRenderable (): void
40
32
{
41
- self ::assertInstanceOf (Renderable::class, $ this ->subject );
33
+ $ subject = new KeyFrame ();
34
+
35
+ self ::assertInstanceOf (Renderable::class, $ subject );
42
36
}
43
37
44
38
/**
45
39
* @test
46
40
*/
47
41
public function implementsCommentable (): void
48
42
{
49
- self ::assertInstanceOf (Commentable::class, $ this ->subject );
43
+ $ subject = new KeyFrame ();
44
+
45
+ self ::assertInstanceOf (Commentable::class, $ subject );
50
46
}
51
47
}
You can’t perform that action at this time.
0 commit comments