Omnipay\Common\CreditCardTest::testGetSupportedBrands PHP Method

testGetSupportedBrands() public method

    public function testGetSupportedBrands()
    {
        $brands = $this->card->getSupportedBrands();
        $this->assertInternalType('array', $brands);
        $this->assertArrayHasKey(CreditCard::BRAND_VISA, $brands);
    }
CreditCardTest