fix tests

This commit is contained in:
Dennis Eichhorn 2023-09-23 13:41:56 +00:00
parent b565e1e830
commit 02961e7a87

View File

@ -38,10 +38,10 @@ final class BillElementTest extends \PHPUnit\Framework\TestCase
public function testDefault() : void
{
self::assertEquals(0, $this->element->id);
self::assertInstanceOf('\phpOMS\Stdlib\Base\IntFloat', $this->element->singleSalesPriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\IntFloat', $this->element->totalSalesPriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\IntFloat', $this->element->singlePurchasePriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\IntFloat', $this->element->totalPurchasePriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\FloatInt', $this->element->singleSalesPriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\FloatInt', $this->element->totalSalesPriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\FloatInt', $this->element->singlePurchasePriceNet);
self::assertInstanceOf('\phpOMS\Stdlib\Base\FloatInt', $this->element->totalPurchasePriceNet);
}
/**