From 59e6874a4a13ffd7ad3b8997a8f1626e869f66ea Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Wed, 30 Oct 2024 13:07:51 -0700 Subject: [PATCH] Scaffold test cases --- .../ReportTemplateActivityLoggingTest.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/Unit/Models/ReportTemplates/ReportTemplateActivityLoggingTest.php b/tests/Unit/Models/ReportTemplates/ReportTemplateActivityLoggingTest.php index 49929a9b07..f1b6baa51e 100644 --- a/tests/Unit/Models/ReportTemplates/ReportTemplateActivityLoggingTest.php +++ b/tests/Unit/Models/ReportTemplates/ReportTemplateActivityLoggingTest.php @@ -38,6 +38,11 @@ class ReportTemplateActivityLoggingTest extends TestCase ]); } + public function testLogEntryForCreatingReportTemplateCanBeDisplayed() + { + $this->markTestIncomplete('Updates to ActionlogsTransformer needed'); + } + public function testUpdatingReportTemplateIsLogged() { $reportTemplate = ReportTemplate::factory()->create([ @@ -132,11 +137,21 @@ class ReportTemplateActivityLoggingTest extends TestCase ]); } + public function testLogEntryForUpdatingReportTemplateCanBeDisplayedCorrectly() + { + $this->markTestIncomplete(); + } + public function testDeletingReportTemplateIsLogged() { $this->markTestIncomplete(); } + public function testLogEntryForDeletingReportTemplateCanBeDisplayedCorrectly() + { + $this->markTestIncomplete(); + } + public function testLogsScopedProperly() { $this->markTestIncomplete();