From ba15191fca3a661e88992b536ec4aac6facc366b Mon Sep 17 00:00:00 2001 From: Matt Young Date: Wed, 2 Jul 2025 11:08:05 -0500 Subject: [PATCH] Exclude reports and print from testing for now --- app/Actions/Print/PrintSignInSheets.php | 4 ++++ app/Actions/Print/PrintStandNameTags.php | 4 ++++ app/Actions/Print/QuarterPageCards.php | 4 ++++ app/Actions/Print/signInPDF.php | 4 ++++ app/Actions/Reports/ExportEntryData.php | 4 ++++ app/Actions/Reports/GetExportData.php | 4 ++++ app/Actions/Tabulation/ForceRecalculateTotalScores.php | 3 +++ 7 files changed, 27 insertions(+) diff --git a/app/Actions/Print/PrintSignInSheets.php b/app/Actions/Print/PrintSignInSheets.php index 738c57c..ca97b43 100644 --- a/app/Actions/Print/PrintSignInSheets.php +++ b/app/Actions/Print/PrintSignInSheets.php @@ -6,6 +6,10 @@ use App\Models\Entry; use App\Models\Room; use Illuminate\Support\Collection; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for PrintSignInSheets class PrintSignInSheets { protected $pdf; diff --git a/app/Actions/Print/PrintStandNameTags.php b/app/Actions/Print/PrintStandNameTags.php index 717227c..4acc650 100644 --- a/app/Actions/Print/PrintStandNameTags.php +++ b/app/Actions/Print/PrintStandNameTags.php @@ -5,6 +5,10 @@ namespace App\Actions\Print; use App\Models\Ensemble; use Codedge\Fpdf\Fpdf\Fpdf; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for PrintStandNameTags class PrintStandNameTags { public function __construct() diff --git a/app/Actions/Print/QuarterPageCards.php b/app/Actions/Print/QuarterPageCards.php index deaac40..800d4d1 100644 --- a/app/Actions/Print/QuarterPageCards.php +++ b/app/Actions/Print/QuarterPageCards.php @@ -8,6 +8,10 @@ use Illuminate\Support\Collection; use function auditionSetting; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for QuarterPageCards class QuarterPageCards implements PrintCards { protected $pdf; diff --git a/app/Actions/Print/signInPDF.php b/app/Actions/Print/signInPDF.php index 4dbabd6..ecff141 100644 --- a/app/Actions/Print/signInPDF.php +++ b/app/Actions/Print/signInPDF.php @@ -4,6 +4,10 @@ namespace App\Actions\Print; use Codedge\Fpdf\Fpdf\Fpdf; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for signInPDF class signInPDF extends Fpdf { public $roomOn; diff --git a/app/Actions/Reports/ExportEntryData.php b/app/Actions/Reports/ExportEntryData.php index d371e15..f55e045 100644 --- a/app/Actions/Reports/ExportEntryData.php +++ b/app/Actions/Reports/ExportEntryData.php @@ -6,6 +6,10 @@ use App\Actions\Tabulation\RankAuditionEntries; use App\Models\Room; use Illuminate\Support\Facades\App; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for ExportEntryData class ExportEntryData { public function __construct() diff --git a/app/Actions/Reports/GetExportData.php b/app/Actions/Reports/GetExportData.php index 1507179..cd0abe3 100644 --- a/app/Actions/Reports/GetExportData.php +++ b/app/Actions/Reports/GetExportData.php @@ -7,6 +7,10 @@ use App\Models\Event; use App\Models\Seat; use Illuminate\Support\Facades\App; +/** + * @codeCoverageIgnore + */ +// TODO figure out testing for GetExportData class GetExportData { public function __construct() diff --git a/app/Actions/Tabulation/ForceRecalculateTotalScores.php b/app/Actions/Tabulation/ForceRecalculateTotalScores.php index d5c6bde..aea8147 100644 --- a/app/Actions/Tabulation/ForceRecalculateTotalScores.php +++ b/app/Actions/Tabulation/ForceRecalculateTotalScores.php @@ -4,6 +4,9 @@ namespace App\Actions\Tabulation; use App\Models\Entry; +/** + * @codeCoverageIgnore + */ class ForceRecalculateTotalScores { public function __invoke(): void