From de2aa903c58f8da89b485aa9a3401eb96ecd2fa7 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Mon, 29 Jan 2024 17:56:55 -0800 Subject: [PATCH] Scaffold tests --- .../Consumables/ConsumableCheckoutTest.php | 41 +++++++++++++++++++ .../Checkouts/ConsumableCheckoutTest.php | 41 +++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 tests/Feature/Api/Consumables/ConsumableCheckoutTest.php create mode 100644 tests/Feature/Checkouts/ConsumableCheckoutTest.php diff --git a/tests/Feature/Api/Consumables/ConsumableCheckoutTest.php b/tests/Feature/Api/Consumables/ConsumableCheckoutTest.php new file mode 100644 index 0000000000..acd5650b57 --- /dev/null +++ b/tests/Feature/Api/Consumables/ConsumableCheckoutTest.php @@ -0,0 +1,41 @@ +markTestIncomplete(); + } + + public function testValidationWhenCheckingOutConsumable() + { + $this->markTestIncomplete(); + } + + public function testConsumableMustBeAvailableWhenCheckingOut() + { + $this->markTestIncomplete(); + } + + public function testConsumableCanBeCheckedOut() + { + $this->markTestIncomplete(); + } + + public function testUserSentNotificationUponCheckout() + { + $this->markTestIncomplete(); + } + + public function testActionLogCreatedUponCheckout() + { + $this->markTestIncomplete(); + } +} diff --git a/tests/Feature/Checkouts/ConsumableCheckoutTest.php b/tests/Feature/Checkouts/ConsumableCheckoutTest.php new file mode 100644 index 0000000000..bbbba9b7e0 --- /dev/null +++ b/tests/Feature/Checkouts/ConsumableCheckoutTest.php @@ -0,0 +1,41 @@ +markTestIncomplete(); + } + + public function testValidationWhenCheckingOutConsumable() + { + $this->markTestIncomplete(); + } + + public function testConsumableMustBeAvailableWhenCheckingOut() + { + $this->markTestIncomplete(); + } + + public function testConsumableCanBeCheckedOut() + { + $this->markTestIncomplete(); + } + + public function testUserSentNotificationUponCheckout() + { + $this->markTestIncomplete(); + } + + public function testActionLogCreatedUponCheckout() + { + $this->markTestIncomplete(); + } +}