Scaffold test cases

This commit is contained in:
Marcus Moore 2024-10-30 13:07:51 -07:00
parent 930ef3fd11
commit 59e6874a4a
No known key found for this signature in database

View file

@ -38,6 +38,11 @@ class ReportTemplateActivityLoggingTest extends TestCase
]); ]);
} }
public function testLogEntryForCreatingReportTemplateCanBeDisplayed()
{
$this->markTestIncomplete('Updates to ActionlogsTransformer needed');
}
public function testUpdatingReportTemplateIsLogged() public function testUpdatingReportTemplateIsLogged()
{ {
$reportTemplate = ReportTemplate::factory()->create([ $reportTemplate = ReportTemplate::factory()->create([
@ -132,11 +137,21 @@ class ReportTemplateActivityLoggingTest extends TestCase
]); ]);
} }
public function testLogEntryForUpdatingReportTemplateCanBeDisplayedCorrectly()
{
$this->markTestIncomplete();
}
public function testDeletingReportTemplateIsLogged() public function testDeletingReportTemplateIsLogged()
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
public function testLogEntryForDeletingReportTemplateCanBeDisplayedCorrectly()
{
$this->markTestIncomplete();
}
public function testLogsScopedProperly() public function testLogsScopedProperly()
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();