diff --git a/tests/EntityTest.php b/tests/EntityTest.php index 98e5de83..5a1c8800 100644 --- a/tests/EntityTest.php +++ b/tests/EntityTest.php @@ -1690,6 +1690,41 @@ public function testWorkcenterEntity() $this->performEntityTest(\Picqer\Financials\Exact\Workcenter::class); } + public function testCustomerItemEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\CustomerItem::class); + } + + public function testDeductibilityPercentageEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\DeductibilityPercentage::class); + } + + public function testDigitalOrderPickingEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\DigitalOrderPicking::class); + } + + public function testDigitalOrderPickingLineEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\DigitalOrderPickingLine::class); + } + + public function testEmploymentEndReasonsOnFocusDateEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\EmploymentEndReasonsOnFocusDate::class); + } + + public function testSalesChannelEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\SalesChannel::class); + } + + public function testSystemUserEntity() + { + $this->performEntityTest(\Picqer\Financials\Exact\SystemUser::class); + } + protected function performEntityTest($entityName) { $reflectionClass = new \ReflectionClass($entityName);