19
19
/**
20
20
* @internal
21
21
*/
22
- #[\PHPUnit \Framework \Attributes \CoversNothing]
23
22
final class PipelineTest extends IterableTestCase
24
23
{
25
- #[\PHPUnit \Framework \Attributes \Test]
26
- public function extractorWithoutFlush (): void
24
+ public function testExtractorWithoutFlush (): void
27
25
{
28
26
$ pipeline = new Pipeline (new PipelineRunner (new NullLogger ()));
29
27
@@ -42,8 +40,7 @@ public function extract(): iterable
42
40
);
43
41
}
44
42
45
- #[\PHPUnit \Framework \Attributes \Test]
46
- public function transformerWithoutFlush (): void
43
+ public function testTransformerWithoutFlush (): void
47
44
{
48
45
$ pipeline = new Pipeline (new PipelineRunner (new NullLogger ()));
49
46
@@ -65,8 +62,7 @@ public function transform(): \Generator
65
62
);
66
63
}
67
64
68
- #[\PHPUnit \Framework \Attributes \Test]
69
- public function transformerWithFlush (): void
65
+ public function testTransformerWithFlush (): void
70
66
{
71
67
$ pipeline = new Pipeline (new PipelineRunner (new NullLogger ()));
72
68
@@ -93,8 +89,7 @@ public function flush(): ResultBucketInterface
93
89
);
94
90
}
95
91
96
- #[\PHPUnit \Framework \Attributes \Test]
97
- public function loaderWithoutFlush (): void
92
+ public function testLoaderWithoutFlush (): void
98
93
{
99
94
$ pipeline = new Pipeline (new PipelineRunner (new NullLogger ()));
100
95
@@ -116,8 +111,7 @@ public function load(): \Generator
116
111
);
117
112
}
118
113
119
- #[\PHPUnit \Framework \Attributes \Test]
120
- public function loaderWithFlush (): void
114
+ public function testLoaderWithFlush (): void
121
115
{
122
116
$ pipeline = new Pipeline (new PipelineRunner (new NullLogger ()));
123
117
0 commit comments