File tree 2 files changed +0
-18
lines changed
HttpFoundation/Tests/Session/Storage/Proxy
2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,6 @@ public function testGc()
122
122
$ this ->proxy ->gc (86400 );
123
123
}
124
124
125
- /**
126
- * @requires PHPUnit 5.1
127
- */
128
125
public function testValidateId ()
129
126
{
130
127
$ mock = $ this ->createMock (TestSessionHandler::class);
@@ -137,9 +134,6 @@ public function testValidateId()
137
134
$ this ->assertTrue ($ this ->proxy ->validateId ('id ' ));
138
135
}
139
136
140
- /**
141
- * @requires PHPUnit 5.1
142
- */
143
137
public function testUpdateTimestamp ()
144
138
{
145
139
$ mock = $ this ->createMock (TestSessionHandler::class);
Original file line number Diff line number Diff line change @@ -148,9 +148,6 @@ public function testGetValueThrowsExceptionIfUninitializedProperty()
148
148
$ this ->propertyAccessor ->getValue (new UninitializedProperty (), 'uninitialized ' );
149
149
}
150
150
151
- /**
152
- * @requires PHP 7
153
- */
154
151
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter ()
155
152
{
156
153
$ this ->expectException (AccessException::class);
@@ -159,9 +156,6 @@ public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter()
159
156
$ this ->propertyAccessor ->getValue (new UninitializedPrivateProperty (), 'uninitialized ' );
160
157
}
161
158
162
- /**
163
- * @requires PHP 7
164
- */
165
159
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousClass ()
166
160
{
167
161
$ this ->expectException (AccessException::class);
@@ -179,9 +173,6 @@ public function getUninitialized(): array
179
173
$ this ->propertyAccessor ->getValue ($ object , 'uninitialized ' );
180
174
}
181
175
182
- /**
183
- * @requires PHP 7
184
- */
185
176
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousStdClass ()
186
177
{
187
178
$ this ->expectException (AccessException::class);
@@ -199,9 +190,6 @@ public function getUninitialized(): array
199
190
$ this ->propertyAccessor ->getValue ($ object , 'uninitialized ' );
200
191
}
201
192
202
- /**
203
- * @requires PHP 7
204
- */
205
193
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousChildClass ()
206
194
{
207
195
$ this ->expectException (AccessException::class);
You can’t perform that action at this time.
0 commit comments