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() {
99
99
*
100
100
* @dataProvider dataHaveFixtureMethodsBeenTriggered
101
101
*
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.
105
107
*
106
108
* @return void
107
109
*/
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
+ ) {
109
117
$ this ->assertSame (
110
118
$ expectedBeforeClass ,
111
119
self ::$ beforeClass ,
You can’t perform that action at this time.
0 commit comments