File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -99,13 +99,21 @@ public static function tearDownFixturesAfterClass() {
9999 *
100100 * @dataProvider dataHaveFixtureMethodsBeenTriggered
101101 *
102- * @param int $expectedBeforeClass Value expected for the $beforeClass property.
103- * @param int $expectedBefore Value expected for the $before property.
104- * @param int $expectedAfter Value expected for the $after property.
102+ * @param int $expectedBeforeClass Value expected for the $beforeClass property.
103+ * @param int $expectedBefore Value expected for the $before property.
104+ * @param int $expectedAfter Value expected for the $after property.
105+ * @param int $expectedPreConditions Unused. "assertPreConditions" can not be triggered via annotations.
106+ * @param int $expectedPostConditions Unused. "assertPostConditions" can not be triggered via annotations.
105107 *
106108 * @return void
107109 */
108- public function testHaveFixtureMethodsBeenTriggered ( $ expectedBeforeClass , $ expectedBefore , $ expectedAfter ) {
110+ public function testHaveFixtureMethodsBeenTriggered (
111+ $ expectedBeforeClass ,
112+ $ expectedBefore ,
113+ $ expectedAfter ,
114+ $ expectedPreConditions , // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
115+ $ expectedPostConditions // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
116+ ) {
109117 $ this ->assertSame (
110118 $ expectedBeforeClass ,
111119 self ::$ beforeClass ,
You can’t perform that action at this time.
0 commit comments