diff --git a/tests/Feature/ProductEntityTest.php b/tests/Feature/ProductEntityTest.php index e9d572b..9215195 100644 --- a/tests/Feature/ProductEntityTest.php +++ b/tests/Feature/ProductEntityTest.php @@ -244,7 +244,7 @@ public function test_create_product() $this->assertInstanceOf(ProductEntity::class, $response); } - public function test_validation_error_on_create_issued_document() + public function test_validation_error_on_create_product() { $product = new Product(); $response = $product->create([]); diff --git a/tests/Feature/ReceiptEntityTest.php b/tests/Feature/ReceiptEntityTest.php index 697341e..4a42707 100644 --- a/tests/Feature/ReceiptEntityTest.php +++ b/tests/Feature/ReceiptEntityTest.php @@ -362,7 +362,7 @@ public function test_monthly_totals_receipt() $this->assertInstanceOf(ReceiptMonthlyTotals::class, $response[0]); } - public function test_validation_error_on_create_issued_document() + public function test_validation_error_on_monthly_totals() { $receipt = new Receipt(); $response = $receipt->monthlyTotals('fake_type', 2022); diff --git a/tests/Feature/SupplierEntityTest.php b/tests/Feature/SupplierEntityTest.php index ac32532..6b77c69 100644 --- a/tests/Feature/SupplierEntityTest.php +++ b/tests/Feature/SupplierEntityTest.php @@ -212,7 +212,7 @@ public function test_create_supplier() $this->assertInstanceOf(SupplierEntity::class, $response); } - public function test_validation_error_on_create_issued_document() + public function test_validation_error_on_create_supplier() { $supplier = new Supplier(); $response = $supplier->create([]); @@ -259,7 +259,7 @@ public function test_edit_supplier() $this->assertInstanceOf(SupplierEntity::class, $response); } - public function test_validation_error_on_edit_issued_document() + public function test_validation_error_on_edit_supplier() { $supplier_id = 1;