Skip to content

Commit 1174b72

Browse files
committed
Mark tests that do not always run assertions
1 parent 5d5ddaa commit 1174b72

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/GatewayTestCase.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ public function testSupportsUpdateCard()
188188
}
189189
}
190190

191+
/**
192+
* @doesNotPerformAssertions
193+
*/
191194
public function testAuthorizeParameters()
192195
{
193196
if ($this->gateway->supportsAuthorize()) {
@@ -205,6 +208,9 @@ public function testAuthorizeParameters()
205208
}
206209
}
207210

211+
/**
212+
* @doesNotPerformAssertions
213+
*/
208214
public function testCompleteAuthorizeParameters()
209215
{
210216
if ($this->gateway->supportsCompleteAuthorize()) {
@@ -222,6 +228,9 @@ public function testCompleteAuthorizeParameters()
222228
}
223229
}
224230

231+
/**
232+
* @doesNotPerformAssertions
233+
*/
225234
public function testCaptureParameters()
226235
{
227236
if ($this->gateway->supportsCapture()) {
@@ -239,6 +248,9 @@ public function testCaptureParameters()
239248
}
240249
}
241250

251+
/**
252+
* @doesNotPerformAssertions
253+
*/
242254
public function testPurchaseParameters()
243255
{
244256
if ($this->gateway->supportsPurchase()) {
@@ -256,6 +268,9 @@ public function testPurchaseParameters()
256268
}
257269
}
258270

271+
/**
272+
* @doesNotPerformAssertions
273+
*/
259274
public function testCompletePurchaseParameters()
260275
{
261276
if ($this->gateway->supportsCompletePurchase()) {
@@ -273,6 +288,9 @@ public function testCompletePurchaseParameters()
273288
}
274289
}
275290

291+
/**
292+
* @doesNotPerformAssertions
293+
*/
276294
public function testRefundParameters()
277295
{
278296
if ($this->gateway->supportsRefund()) {
@@ -290,6 +308,9 @@ public function testRefundParameters()
290308
}
291309
}
292310

311+
/**
312+
* @doesNotPerformAssertions
313+
*/
293314
public function testVoidParameters()
294315
{
295316
if ($this->gateway->supportsVoid()) {
@@ -307,6 +328,9 @@ public function testVoidParameters()
307328
}
308329
}
309330

331+
/**
332+
* @doesNotPerformAssertions
333+
*/
310334
public function testCreateCardParameters()
311335
{
312336
if ($this->gateway->supportsCreateCard()) {
@@ -324,6 +348,9 @@ public function testCreateCardParameters()
324348
}
325349
}
326350

351+
/**
352+
* @doesNotPerformAssertions
353+
*/
327354
public function testDeleteCardParameters()
328355
{
329356
if ($this->gateway->supportsDeleteCard()) {
@@ -341,6 +368,9 @@ public function testDeleteCardParameters()
341368
}
342369
}
343370

371+
/**
372+
* @doesNotPerformAssertions
373+
*/
344374
public function testUpdateCardParameters()
345375
{
346376
if ($this->gateway->supportsUpdateCard()) {

0 commit comments

Comments
 (0)