Scaffold tests

This commit is contained in:
Marcus Moore 2024-01-29 17:56:55 -08:00
parent 3da7876631
commit de2aa903c5
No known key found for this signature in database
2 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,41 @@
<?php
namespace Tests\Feature\Api\Consumables;
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
class ConsumableCheckoutTest extends TestCase
{
use InteractsWithSettings;
public function testCheckingOutConsumableRequiresCorrectPermission()
{
$this->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();
}
}

View file

@ -0,0 +1,41 @@
<?php
namespace Tests\Feature\Checkouts;
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
class ConsumableCheckoutTest extends TestCase
{
use InteractsWithSettings;
public function testCheckingOutConsumableRequiresCorrectPermission()
{
$this->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();
}
}