Scaffold two tests

This commit is contained in:
Marcus Moore 2024-08-05 16:19:09 -07:00
parent 5cd9dd4a67
commit d1bb3ef6bf
No known key found for this signature in database

View file

@ -99,6 +99,14 @@ class BulkDeleteUsersTest extends TestCase
$this->assertActionLogCheckInEntryFor($userC, $accessoryA);
}
public function testAssetsCanBeBulkCheckedIn()
{
$this->markTestIncomplete();
// @todo:
// $this->assertActionLogCheckInEntryFor(); ...
}
public function testConsumablesCanBeBulkCheckedIn()
{
[$consumableA, $consumableB] = Consumable::factory()->count(2)->create();
@ -133,6 +141,14 @@ class BulkDeleteUsersTest extends TestCase
$this->assertActionLogCheckInEntryFor($userC, $consumableA);
}
public function testLicenseSeatsCanBeBulkCheckedIn()
{
$this->markTestIncomplete();
// @todo:
// $this->assertActionLogCheckInEntryFor(); ...
}
public function testUsersCanBeDeletedInBulk()
{
[$userA, $userB, $userC] = User::factory()->count(3)->create();