diff --git a/tests/GatewayTest.php b/tests/GatewayTest.php index 642bc7d..373944b 100644 --- a/tests/GatewayTest.php +++ b/tests/GatewayTest.php @@ -75,4 +75,13 @@ public function it_can_pre_authorize_a_purchase_and_receive_a_response() $this->assertEquals(Response::class, get_class($response)); $this->assertTrue($response->successful); } + + /** @test */ + public function it_can_verify_a_card_before_attempting_a_purchase_and_receive_a_response() + { + $response = $this->gateway->verify($this->params); + + $this->assertEquals(Response::class, get_class($response)); + $this->assertTrue($response->successful); + } } \ No newline at end of file