@@ -338,7 +338,7 @@ public function testPreparationFailed(Code\Test $test): void
338
338
* @throws InvalidArgumentException
339
339
* @throws UnknownEventTypeException
340
340
*/
341
- public function testBeforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
341
+ public function beforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
342
342
{
343
343
$ this ->dispatcher ->dispatch (
344
344
new Test \BeforeFirstTestMethodCalled (
@@ -355,7 +355,7 @@ public function testBeforeFirstTestMethodCalled(string $testClassName, ClassMeth
355
355
* @throws InvalidArgumentException
356
356
* @throws UnknownEventTypeException
357
357
*/
358
- public function testBeforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
358
+ public function beforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
359
359
{
360
360
$ this ->dispatcher ->dispatch (
361
361
new Test \BeforeFirstTestMethodErrored (
@@ -373,7 +373,7 @@ public function testBeforeFirstTestMethodErrored(string $testClassName, ClassMet
373
373
* @throws InvalidArgumentException
374
374
* @throws UnknownEventTypeException
375
375
*/
376
- public function testBeforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
376
+ public function beforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
377
377
{
378
378
$ this ->dispatcher ->dispatch (
379
379
new Test \BeforeFirstTestMethodFinished (
@@ -390,7 +390,7 @@ public function testBeforeFirstTestMethodFinished(string $testClassName, ClassMe
390
390
* @throws InvalidArgumentException
391
391
* @throws UnknownEventTypeException
392
392
*/
393
- public function testBeforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
393
+ public function beforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
394
394
{
395
395
$ this ->dispatcher ->dispatch (
396
396
new Test \BeforeTestMethodCalled (
@@ -407,7 +407,7 @@ public function testBeforeTestMethodCalled(string $testClassName, ClassMethod $c
407
407
* @throws InvalidArgumentException
408
408
* @throws UnknownEventTypeException
409
409
*/
410
- public function testBeforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
410
+ public function beforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
411
411
{
412
412
$ this ->dispatcher ->dispatch (
413
413
new Test \BeforeTestMethodErrored (
@@ -425,7 +425,7 @@ public function testBeforeTestMethodErrored(string $testClassName, ClassMethod $
425
425
* @throws InvalidArgumentException
426
426
* @throws UnknownEventTypeException
427
427
*/
428
- public function testBeforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
428
+ public function beforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
429
429
{
430
430
$ this ->dispatcher ->dispatch (
431
431
new Test \BeforeTestMethodFinished (
@@ -442,7 +442,7 @@ public function testBeforeTestMethodFinished(string $testClassName, ClassMethod
442
442
* @throws InvalidArgumentException
443
443
* @throws UnknownEventTypeException
444
444
*/
445
- public function testPreConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
445
+ public function preConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
446
446
{
447
447
$ this ->dispatcher ->dispatch (
448
448
new Test \PreConditionCalled (
@@ -459,7 +459,7 @@ public function testPreConditionCalled(string $testClassName, ClassMethod $calle
459
459
* @throws InvalidArgumentException
460
460
* @throws UnknownEventTypeException
461
461
*/
462
- public function testPreConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
462
+ public function preConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
463
463
{
464
464
$ this ->dispatcher ->dispatch (
465
465
new Test \PreConditionErrored (
@@ -477,7 +477,7 @@ public function testPreConditionErrored(string $testClassName, ClassMethod $call
477
477
* @throws InvalidArgumentException
478
478
* @throws UnknownEventTypeException
479
479
*/
480
- public function testPreConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
480
+ public function preConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
481
481
{
482
482
$ this ->dispatcher ->dispatch (
483
483
new Test \PreConditionFinished (
@@ -1048,7 +1048,7 @@ public function testFinished(Code\Test $test, int $numberOfAssertionsPerformed):
1048
1048
* @throws InvalidArgumentException
1049
1049
* @throws UnknownEventTypeException
1050
1050
*/
1051
- public function testPostConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1051
+ public function postConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1052
1052
{
1053
1053
$ this ->dispatcher ->dispatch (
1054
1054
new Test \PostConditionCalled (
@@ -1065,7 +1065,7 @@ public function testPostConditionCalled(string $testClassName, ClassMethod $call
1065
1065
* @throws InvalidArgumentException
1066
1066
* @throws UnknownEventTypeException
1067
1067
*/
1068
- public function testPostConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1068
+ public function postConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1069
1069
{
1070
1070
$ this ->dispatcher ->dispatch (
1071
1071
new Test \PostConditionErrored (
@@ -1083,7 +1083,7 @@ public function testPostConditionErrored(string $testClassName, ClassMethod $cal
1083
1083
* @throws InvalidArgumentException
1084
1084
* @throws UnknownEventTypeException
1085
1085
*/
1086
- public function testPostConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1086
+ public function postConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1087
1087
{
1088
1088
$ this ->dispatcher ->dispatch (
1089
1089
new Test \PostConditionFinished (
@@ -1100,7 +1100,7 @@ public function testPostConditionFinished(string $testClassName, ClassMethod ...
1100
1100
* @throws InvalidArgumentException
1101
1101
* @throws UnknownEventTypeException
1102
1102
*/
1103
- public function testAfterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1103
+ public function afterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1104
1104
{
1105
1105
$ this ->dispatcher ->dispatch (
1106
1106
new Test \AfterTestMethodCalled (
@@ -1117,7 +1117,7 @@ public function testAfterTestMethodCalled(string $testClassName, ClassMethod $ca
1117
1117
* @throws InvalidArgumentException
1118
1118
* @throws UnknownEventTypeException
1119
1119
*/
1120
- public function testAfterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1120
+ public function afterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1121
1121
{
1122
1122
$ this ->dispatcher ->dispatch (
1123
1123
new Test \AfterTestMethodErrored (
@@ -1135,7 +1135,7 @@ public function testAfterTestMethodErrored(string $testClassName, ClassMethod $c
1135
1135
* @throws InvalidArgumentException
1136
1136
* @throws UnknownEventTypeException
1137
1137
*/
1138
- public function testAfterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1138
+ public function afterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1139
1139
{
1140
1140
$ this ->dispatcher ->dispatch (
1141
1141
new Test \AfterTestMethodFinished (
@@ -1152,7 +1152,7 @@ public function testAfterTestMethodFinished(string $testClassName, ClassMethod .
1152
1152
* @throws InvalidArgumentException
1153
1153
* @throws UnknownEventTypeException
1154
1154
*/
1155
- public function testAfterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1155
+ public function afterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1156
1156
{
1157
1157
$ this ->dispatcher ->dispatch (
1158
1158
new Test \AfterLastTestMethodCalled (
@@ -1169,7 +1169,7 @@ public function testAfterLastTestMethodCalled(string $testClassName, ClassMethod
1169
1169
* @throws InvalidArgumentException
1170
1170
* @throws UnknownEventTypeException
1171
1171
*/
1172
- public function testAfterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1172
+ public function afterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1173
1173
{
1174
1174
$ this ->dispatcher ->dispatch (
1175
1175
new Test \AfterLastTestMethodErrored (
@@ -1187,7 +1187,7 @@ public function testAfterLastTestMethodErrored(string $testClassName, ClassMetho
1187
1187
* @throws InvalidArgumentException
1188
1188
* @throws UnknownEventTypeException
1189
1189
*/
1190
- public function testAfterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1190
+ public function afterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1191
1191
{
1192
1192
$ this ->dispatcher ->dispatch (
1193
1193
new Test \AfterLastTestMethodFinished (
0 commit comments