Stripe\ApplePayDomainTest::testCreation PHP Method

testCreation() public method

public testCreation ( )
    public function testCreation()
    {
        $this->mockRequest('POST', '/v1/apple_pay/domains', array('domain_name' => 'test.com'), array('id' => 'apwc_create', 'object' => 'apple_pay_domain'));
        $d = ApplePayDomain::create(array('domain_name' => 'test.com'));
        $this->assertSame('apwc_create', $d->id);
        $this->assertInstanceOf('Stripe\\ApplePayDomain', $d);
    }