@@ -343,7 +343,7 @@ public function testPreparationFailed(Code\Test $test): void
343343 * @throws InvalidArgumentException
344344 * @throws UnknownEventTypeException
345345 */
346- public function testBeforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
346+ public function beforeFirstTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
347347 {
348348 $ this ->dispatcher ->dispatch (
349349 new Test \BeforeFirstTestMethodCalled (
@@ -360,7 +360,7 @@ public function testBeforeFirstTestMethodCalled(string $testClassName, ClassMeth
360360 * @throws InvalidArgumentException
361361 * @throws UnknownEventTypeException
362362 */
363- public function testBeforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
363+ public function beforeFirstTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
364364 {
365365 $ this ->dispatcher ->dispatch (
366366 new Test \BeforeFirstTestMethodErrored (
@@ -378,7 +378,7 @@ public function testBeforeFirstTestMethodErrored(string $testClassName, ClassMet
378378 * @throws InvalidArgumentException
379379 * @throws UnknownEventTypeException
380380 */
381- public function testBeforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
381+ public function beforeFirstTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
382382 {
383383 $ this ->dispatcher ->dispatch (
384384 new Test \BeforeFirstTestMethodFinished (
@@ -395,7 +395,7 @@ public function testBeforeFirstTestMethodFinished(string $testClassName, ClassMe
395395 * @throws InvalidArgumentException
396396 * @throws UnknownEventTypeException
397397 */
398- public function testBeforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
398+ public function beforeTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
399399 {
400400 $ this ->dispatcher ->dispatch (
401401 new Test \BeforeTestMethodCalled (
@@ -412,7 +412,7 @@ public function testBeforeTestMethodCalled(string $testClassName, ClassMethod $c
412412 * @throws InvalidArgumentException
413413 * @throws UnknownEventTypeException
414414 */
415- public function testBeforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
415+ public function beforeTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
416416 {
417417 $ this ->dispatcher ->dispatch (
418418 new Test \BeforeTestMethodErrored (
@@ -430,7 +430,7 @@ public function testBeforeTestMethodErrored(string $testClassName, ClassMethod $
430430 * @throws InvalidArgumentException
431431 * @throws UnknownEventTypeException
432432 */
433- public function testBeforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
433+ public function beforeTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
434434 {
435435 $ this ->dispatcher ->dispatch (
436436 new Test \BeforeTestMethodFinished (
@@ -447,7 +447,7 @@ public function testBeforeTestMethodFinished(string $testClassName, ClassMethod
447447 * @throws InvalidArgumentException
448448 * @throws UnknownEventTypeException
449449 */
450- public function testPreConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
450+ public function preConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
451451 {
452452 $ this ->dispatcher ->dispatch (
453453 new Test \PreConditionCalled (
@@ -464,7 +464,7 @@ public function testPreConditionCalled(string $testClassName, ClassMethod $calle
464464 * @throws InvalidArgumentException
465465 * @throws UnknownEventTypeException
466466 */
467- public function testPreConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
467+ public function preConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
468468 {
469469 $ this ->dispatcher ->dispatch (
470470 new Test \PreConditionErrored (
@@ -482,7 +482,7 @@ public function testPreConditionErrored(string $testClassName, ClassMethod $call
482482 * @throws InvalidArgumentException
483483 * @throws UnknownEventTypeException
484484 */
485- public function testPreConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
485+ public function preConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
486486 {
487487 $ this ->dispatcher ->dispatch (
488488 new Test \PreConditionFinished (
@@ -1035,7 +1035,7 @@ public function testFinished(Code\Test $test, int $numberOfAssertionsPerformed):
10351035 * @throws InvalidArgumentException
10361036 * @throws UnknownEventTypeException
10371037 */
1038- public function testPostConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1038+ public function postConditionCalled (string $ testClassName , ClassMethod $ calledMethod ): void
10391039 {
10401040 $ this ->dispatcher ->dispatch (
10411041 new Test \PostConditionCalled (
@@ -1052,7 +1052,7 @@ public function testPostConditionCalled(string $testClassName, ClassMethod $call
10521052 * @throws InvalidArgumentException
10531053 * @throws UnknownEventTypeException
10541054 */
1055- public function testPostConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1055+ public function postConditionErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
10561056 {
10571057 $ this ->dispatcher ->dispatch (
10581058 new Test \PostConditionErrored (
@@ -1070,7 +1070,7 @@ public function testPostConditionErrored(string $testClassName, ClassMethod $cal
10701070 * @throws InvalidArgumentException
10711071 * @throws UnknownEventTypeException
10721072 */
1073- public function testPostConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1073+ public function postConditionFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
10741074 {
10751075 $ this ->dispatcher ->dispatch (
10761076 new Test \PostConditionFinished (
@@ -1087,7 +1087,7 @@ public function testPostConditionFinished(string $testClassName, ClassMethod ...
10871087 * @throws InvalidArgumentException
10881088 * @throws UnknownEventTypeException
10891089 */
1090- public function testAfterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1090+ public function afterTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
10911091 {
10921092 $ this ->dispatcher ->dispatch (
10931093 new Test \AfterTestMethodCalled (
@@ -1104,7 +1104,7 @@ public function testAfterTestMethodCalled(string $testClassName, ClassMethod $ca
11041104 * @throws InvalidArgumentException
11051105 * @throws UnknownEventTypeException
11061106 */
1107- public function testAfterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1107+ public function afterTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
11081108 {
11091109 $ this ->dispatcher ->dispatch (
11101110 new Test \AfterTestMethodErrored (
@@ -1122,7 +1122,7 @@ public function testAfterTestMethodErrored(string $testClassName, ClassMethod $c
11221122 * @throws InvalidArgumentException
11231123 * @throws UnknownEventTypeException
11241124 */
1125- public function testAfterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1125+ public function afterTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
11261126 {
11271127 $ this ->dispatcher ->dispatch (
11281128 new Test \AfterTestMethodFinished (
@@ -1139,7 +1139,7 @@ public function testAfterTestMethodFinished(string $testClassName, ClassMethod .
11391139 * @throws InvalidArgumentException
11401140 * @throws UnknownEventTypeException
11411141 */
1142- public function testAfterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
1142+ public function afterLastTestMethodCalled (string $ testClassName , ClassMethod $ calledMethod ): void
11431143 {
11441144 $ this ->dispatcher ->dispatch (
11451145 new Test \AfterLastTestMethodCalled (
@@ -1156,7 +1156,7 @@ public function testAfterLastTestMethodCalled(string $testClassName, ClassMethod
11561156 * @throws InvalidArgumentException
11571157 * @throws UnknownEventTypeException
11581158 */
1159- public function testAfterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
1159+ public function afterLastTestMethodErrored (string $ testClassName , ClassMethod $ calledMethod , Throwable $ throwable ): void
11601160 {
11611161 $ this ->dispatcher ->dispatch (
11621162 new Test \AfterLastTestMethodErrored (
@@ -1174,7 +1174,7 @@ public function testAfterLastTestMethodErrored(string $testClassName, ClassMetho
11741174 * @throws InvalidArgumentException
11751175 * @throws UnknownEventTypeException
11761176 */
1177- public function testAfterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
1177+ public function afterLastTestMethodFinished (string $ testClassName , ClassMethod ...$ calledMethods ): void
11781178 {
11791179 $ this ->dispatcher ->dispatch (
11801180 new Test \AfterLastTestMethodFinished (
0 commit comments