Omnipay\Common\Message\AbstractRequestTest::testGetAmountNoDecimalsRounding PHP Метод

testGetAmountNoDecimalsRounding() публичный Метод

    public function testGetAmountNoDecimalsRounding()
    {
        // There will not be any rounding; the amount is sent as requested or not at all.
        $this->assertSame($this->request, $this->request->setAmount('136.5'));
        $this->assertSame($this->request, $this->request->setCurrency('JPY'));
        $this->request->getAmount();
    }