@@ -343,7 +343,7 @@ public function testPreparationFailed(Code\Test $test): void
343
343
* @throws InvalidArgumentException
344
344
* @throws UnknownEventTypeException
345
345
*/
346
- public function testBeforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
346
+ public function beforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
347
347
{
348
348
$ this ->dispatcher ->dispatch (
349
349
new Test \BeforeFirstTestMethodCalled (
@@ -360,7 +360,7 @@ public function testBeforeFirstTestMethodCalled(string $testClassName, ClassMeth
360
360
* @throws InvalidArgumentException
361
361
* @throws UnknownEventTypeException
362
362
*/
363
- public function testBeforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
363
+ public function beforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
364
364
{
365
365
$ this ->dispatcher ->dispatch (
366
366
new Test \BeforeFirstTestMethodErrored (
@@ -378,7 +378,7 @@ public function testBeforeFirstTestMethodErrored(string $testClassName, ClassMet
378
378
* @throws InvalidArgumentException
379
379
* @throws UnknownEventTypeException
380
380
*/
381
- public function testBeforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
381
+ public function beforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
382
382
{
383
383
$ this ->dispatcher ->dispatch (
384
384
new Test \BeforeFirstTestMethodFinished (
@@ -395,7 +395,7 @@ public function testBeforeFirstTestMethodFinished(string $testClassName, ClassMe
395
395
* @throws InvalidArgumentException
396
396
* @throws UnknownEventTypeException
397
397
*/
398
- public function testBeforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
398
+ public function beforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
399
399
{
400
400
$ this ->dispatcher ->dispatch (
401
401
new Test \BeforeTestMethodCalled (
@@ -412,7 +412,7 @@ public function testBeforeTestMethodCalled(string $testClassName, ClassMethod $c
412
412
* @throws InvalidArgumentException
413
413
* @throws UnknownEventTypeException
414
414
*/
415
- public function testBeforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
415
+ public function beforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
416
416
{
417
417
$ this ->dispatcher ->dispatch (
418
418
new Test \BeforeTestMethodErrored (
@@ -430,7 +430,7 @@ public function testBeforeTestMethodErrored(string $testClassName, ClassMethod $
430
430
* @throws InvalidArgumentException
431
431
* @throws UnknownEventTypeException
432
432
*/
433
- public function testBeforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
433
+ public function beforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
434
434
{
435
435
$ this ->dispatcher ->dispatch (
436
436
new Test \BeforeTestMethodFinished (
@@ -447,7 +447,7 @@ public function testBeforeTestMethodFinished(string $testClassName, ClassMethod
447
447
* @throws InvalidArgumentException
448
448
* @throws UnknownEventTypeException
449
449
*/
450
- public function testPreConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
450
+ public function preConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
451
451
{
452
452
$ this ->dispatcher ->dispatch (
453
453
new Test \PreConditionCalled (
@@ -464,7 +464,7 @@ public function testPreConditionCalled(string $testClassName, ClassMethod $calle
464
464
* @throws InvalidArgumentException
465
465
* @throws UnknownEventTypeException
466
466
*/
467
- public function testPreConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
467
+ public function preConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
468
468
{
469
469
$ this ->dispatcher ->dispatch (
470
470
new Test \PreConditionErrored (
@@ -482,7 +482,7 @@ public function testPreConditionErrored(string $testClassName, ClassMethod $call
482
482
* @throws InvalidArgumentException
483
483
* @throws UnknownEventTypeException
484
484
*/
485
- public function testPreConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
485
+ public function preConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
486
486
{
487
487
$ this ->dispatcher ->dispatch (
488
488
new Test \PreConditionFinished (
@@ -1035,7 +1035,7 @@ public function testFinished(Code\Test $test, int $numberOfAssertionsPerformed):
1035
1035
* @throws InvalidArgumentException
1036
1036
* @throws UnknownEventTypeException
1037
1037
*/
1038
- public function testPostConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1038
+ public function postConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1039
1039
{
1040
1040
$ this ->dispatcher ->dispatch (
1041
1041
new Test \PostConditionCalled (
@@ -1052,7 +1052,7 @@ public function testPostConditionCalled(string $testClassName, ClassMethod $call
1052
1052
* @throws InvalidArgumentException
1053
1053
* @throws UnknownEventTypeException
1054
1054
*/
1055
- public function testPostConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1055
+ public function postConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1056
1056
{
1057
1057
$ this ->dispatcher ->dispatch (
1058
1058
new Test \PostConditionErrored (
@@ -1070,7 +1070,7 @@ public function testPostConditionErrored(string $testClassName, ClassMethod $cal
1070
1070
* @throws InvalidArgumentException
1071
1071
* @throws UnknownEventTypeException
1072
1072
*/
1073
- public function testPostConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1073
+ public function postConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1074
1074
{
1075
1075
$ this ->dispatcher ->dispatch (
1076
1076
new Test \PostConditionFinished (
@@ -1087,7 +1087,7 @@ public function testPostConditionFinished(string $testClassName, ClassMethod ...
1087
1087
* @throws InvalidArgumentException
1088
1088
* @throws UnknownEventTypeException
1089
1089
*/
1090
- public function testAfterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1090
+ public function afterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1091
1091
{
1092
1092
$ this ->dispatcher ->dispatch (
1093
1093
new Test \AfterTestMethodCalled (
@@ -1104,7 +1104,7 @@ public function testAfterTestMethodCalled(string $testClassName, ClassMethod $ca
1104
1104
* @throws InvalidArgumentException
1105
1105
* @throws UnknownEventTypeException
1106
1106
*/
1107
- public function testAfterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1107
+ public function afterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1108
1108
{
1109
1109
$ this ->dispatcher ->dispatch (
1110
1110
new Test \AfterTestMethodErrored (
@@ -1122,7 +1122,7 @@ public function testAfterTestMethodErrored(string $testClassName, ClassMethod $c
1122
1122
* @throws InvalidArgumentException
1123
1123
* @throws UnknownEventTypeException
1124
1124
*/
1125
- public function testAfterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1125
+ public function afterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1126
1126
{
1127
1127
$ this ->dispatcher ->dispatch (
1128
1128
new Test \AfterTestMethodFinished (
@@ -1139,7 +1139,7 @@ public function testAfterTestMethodFinished(string $testClassName, ClassMethod .
1139
1139
* @throws InvalidArgumentException
1140
1140
* @throws UnknownEventTypeException
1141
1141
*/
1142
- public function testAfterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1142
+ public function afterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1143
1143
{
1144
1144
$ this ->dispatcher ->dispatch (
1145
1145
new Test \AfterLastTestMethodCalled (
@@ -1156,7 +1156,7 @@ public function testAfterLastTestMethodCalled(string $testClassName, ClassMethod
1156
1156
* @throws InvalidArgumentException
1157
1157
* @throws UnknownEventTypeException
1158
1158
*/
1159
- public function testAfterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1159
+ public function afterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1160
1160
{
1161
1161
$ this ->dispatcher ->dispatch (
1162
1162
new Test \AfterLastTestMethodErrored (
@@ -1174,7 +1174,7 @@ public function testAfterLastTestMethodErrored(string $testClassName, ClassMetho
1174
1174
* @throws InvalidArgumentException
1175
1175
* @throws UnknownEventTypeException
1176
1176
*/
1177
- public function testAfterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1177
+ public function afterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1178
1178
{
1179
1179
$ this ->dispatcher ->dispatch (
1180
1180
new Test \AfterLastTestMethodFinished (
0 commit comments