Bitpay\InvoiceTest::testSetPrice PHP 메소드

testSetPrice() 공개 메소드

public testSetPrice ( )
    public function testSetPrice()
    {
        $this->assertNotNull($this->invoice);
        $this->invoice->setPrice(9.99);
        $this->assertSame(9.99, $this->invoice->getPrice());
    }