@@ -338,7 +338,7 @@ public function testPreparationFailed(Code\Test $test): void
338338 * @throws InvalidArgumentException
339339 * @throws UnknownEventTypeException
340340 */
341- public function testBeforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
341+ public function beforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
342342 {
343343 $ this ->dispatcher ->dispatch (
344344 new Test \BeforeFirstTestMethodCalled (
@@ -355,7 +355,7 @@ public function testBeforeFirstTestMethodCalled(string $testClassName, ClassMeth
355355 * @throws InvalidArgumentException
356356 * @throws UnknownEventTypeException
357357 */
358- public function testBeforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
358+ public function beforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
359359 {
360360 $ this ->dispatcher ->dispatch (
361361 new Test \BeforeFirstTestMethodErrored (
@@ -373,7 +373,7 @@ public function testBeforeFirstTestMethodErrored(string $testClassName, ClassMet
373373 * @throws InvalidArgumentException
374374 * @throws UnknownEventTypeException
375375 */
376- public function testBeforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
376+ public function beforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
377377 {
378378 $ this ->dispatcher ->dispatch (
379379 new Test \BeforeFirstTestMethodFinished (
@@ -390,7 +390,7 @@ public function testBeforeFirstTestMethodFinished(string $testClassName, ClassMe
390390 * @throws InvalidArgumentException
391391 * @throws UnknownEventTypeException
392392 */
393- public function testBeforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
393+ public function beforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
394394 {
395395 $ this ->dispatcher ->dispatch (
396396 new Test \BeforeTestMethodCalled (
@@ -407,7 +407,7 @@ public function testBeforeTestMethodCalled(string $testClassName, ClassMethod $c
407407 * @throws InvalidArgumentException
408408 * @throws UnknownEventTypeException
409409 */
410- public function testBeforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
410+ public function beforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
411411 {
412412 $ this ->dispatcher ->dispatch (
413413 new Test \BeforeTestMethodErrored (
@@ -425,7 +425,7 @@ public function testBeforeTestMethodErrored(string $testClassName, ClassMethod $
425425 * @throws InvalidArgumentException
426426 * @throws UnknownEventTypeException
427427 */
428- public function testBeforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
428+ public function beforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
429429 {
430430 $ this ->dispatcher ->dispatch (
431431 new Test \BeforeTestMethodFinished (
@@ -442,7 +442,7 @@ public function testBeforeTestMethodFinished(string $testClassName, ClassMethod
442442 * @throws InvalidArgumentException
443443 * @throws UnknownEventTypeException
444444 */
445- public function testPreConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
445+ public function preConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
446446 {
447447 $ this ->dispatcher ->dispatch (
448448 new Test \PreConditionCalled (
@@ -459,7 +459,7 @@ public function testPreConditionCalled(string $testClassName, ClassMethod $calle
459459 * @throws InvalidArgumentException
460460 * @throws UnknownEventTypeException
461461 */
462- public function testPreConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
462+ public function preConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
463463 {
464464 $ this ->dispatcher ->dispatch (
465465 new Test \PreConditionErrored (
@@ -477,7 +477,7 @@ public function testPreConditionErrored(string $testClassName, ClassMethod $call
477477 * @throws InvalidArgumentException
478478 * @throws UnknownEventTypeException
479479 */
480- public function testPreConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
480+ public function preConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
481481 {
482482 $ this ->dispatcher ->dispatch (
483483 new Test \PreConditionFinished (
@@ -1048,7 +1048,7 @@ public function testFinished(Code\Test $test, int $numberOfAssertionsPerformed):
10481048 * @throws InvalidArgumentException
10491049 * @throws UnknownEventTypeException
10501050 */
1051- public function testPostConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1051+ public function postConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
10521052 {
10531053 $ this ->dispatcher ->dispatch (
10541054 new Test \PostConditionCalled (
@@ -1065,7 +1065,7 @@ public function testPostConditionCalled(string $testClassName, ClassMethod $call
10651065 * @throws InvalidArgumentException
10661066 * @throws UnknownEventTypeException
10671067 */
1068- public function testPostConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1068+ public function postConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
10691069 {
10701070 $ this ->dispatcher ->dispatch (
10711071 new Test \PostConditionErrored (
@@ -1083,7 +1083,7 @@ public function testPostConditionErrored(string $testClassName, ClassMethod $cal
10831083 * @throws InvalidArgumentException
10841084 * @throws UnknownEventTypeException
10851085 */
1086- public function testPostConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1086+ public function postConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
10871087 {
10881088 $ this ->dispatcher ->dispatch (
10891089 new Test \PostConditionFinished (
@@ -1100,7 +1100,7 @@ public function testPostConditionFinished(string $testClassName, ClassMethod ...
11001100 * @throws InvalidArgumentException
11011101 * @throws UnknownEventTypeException
11021102 */
1103- public function testAfterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1103+ public function afterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
11041104 {
11051105 $ this ->dispatcher ->dispatch (
11061106 new Test \AfterTestMethodCalled (
@@ -1117,7 +1117,7 @@ public function testAfterTestMethodCalled(string $testClassName, ClassMethod $ca
11171117 * @throws InvalidArgumentException
11181118 * @throws UnknownEventTypeException
11191119 */
1120- public function testAfterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1120+ public function afterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
11211121 {
11221122 $ this ->dispatcher ->dispatch (
11231123 new Test \AfterTestMethodErrored (
@@ -1135,7 +1135,7 @@ public function testAfterTestMethodErrored(string $testClassName, ClassMethod $c
11351135 * @throws InvalidArgumentException
11361136 * @throws UnknownEventTypeException
11371137 */
1138- public function testAfterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1138+ public function afterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
11391139 {
11401140 $ this ->dispatcher ->dispatch (
11411141 new Test \AfterTestMethodFinished (
@@ -1152,7 +1152,7 @@ public function testAfterTestMethodFinished(string $testClassName, ClassMethod .
11521152 * @throws InvalidArgumentException
11531153 * @throws UnknownEventTypeException
11541154 */
1155- public function testAfterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1155+ public function afterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
11561156 {
11571157 $ this ->dispatcher ->dispatch (
11581158 new Test \AfterLastTestMethodCalled (
@@ -1169,7 +1169,7 @@ public function testAfterLastTestMethodCalled(string $testClassName, ClassMethod
11691169 * @throws InvalidArgumentException
11701170 * @throws UnknownEventTypeException
11711171 */
1172- public function testAfterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1172+ public function afterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
11731173 {
11741174 $ this ->dispatcher ->dispatch (
11751175 new Test \AfterLastTestMethodErrored (
@@ -1187,7 +1187,7 @@ public function testAfterLastTestMethodErrored(string $testClassName, ClassMetho
11871187 * @throws InvalidArgumentException
11881188 * @throws UnknownEventTypeException
11891189 */
1190- public function testAfterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1190+ public function afterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
11911191 {
11921192 $ this ->dispatcher ->dispatch (
11931193 new Test \AfterLastTestMethodFinished (
0 commit comments