From 277cca69816bd66a03433bc4da018183f5ca68e5 Mon Sep 17 00:00:00 2001 From: Stephan Groen Date: Tue, 30 Aug 2022 08:38:46 +0200 Subject: [PATCH] Test for Subscription entity --- tests/EntityTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/EntityTest.php b/tests/EntityTest.php index 16af829..4b2af09 100644 --- a/tests/EntityTest.php +++ b/tests/EntityTest.php @@ -36,6 +36,7 @@ use Picqer\Financials\Moneybird\Entities\SalesInvoicePayment; use Picqer\Financials\Moneybird\Entities\SalesInvoiceReminder; use Picqer\Financials\Moneybird\Entities\SalesInvoiceTaxTotal; +use Picqer\Financials\Moneybird\Entities\Subscription; use Picqer\Financials\Moneybird\Entities\TaxRate; use Picqer\Financials\Moneybird\Entities\TimeEntry; use Picqer\Financials\Moneybird\Entities\TypelessDocument; @@ -212,6 +213,11 @@ public function testSalesInvoiceTaxTotalEntity() $this->performEntityTest(SalesInvoiceTaxTotal::class); } + public function testSubscriptionEntity() + { + $this->performEntityTest(Subscription::class); + } + public function testNoteEntity() { $this->performEntityTest(Note::class);