From 5b373f71942142d2618bf6033cfda8ca899ed5eb Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 24 Nov 2025 16:43:48 +0100 Subject: [PATCH] Remove @doesNotPerformAssertions annotations Removed unnecessary annotations from test methods. --- tests/Common/HelperTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/Common/HelperTest.php b/tests/Common/HelperTest.php index a2e2d01..87d120e 100644 --- a/tests/Common/HelperTest.php +++ b/tests/Common/HelperTest.php @@ -52,9 +52,6 @@ public function testInitializeIgnoresNull() Helper::initialize($target, null); } - /** - * @doesNotPerformAssertions - */ public function testInitializeCallsSetters() { $target = m::mock('\Omnipay\Common\CreditCard'); @@ -64,9 +61,6 @@ public function testInitializeCallsSetters() Helper::initialize($target, array('name' => 'adrian', 'number' => '1234')); } - /** - * @doesNotPerformAssertions - */ public function testInitializeIgnoresInvalidParameters() { $target = m::mock('\Omnipay\Common\CreditCard');