Exclude reports and print from testing for now

This commit is contained in:
Matt Young 2025-07-02 11:08:05 -05:00
parent c67c1ad79c
commit ba15191fca
7 changed files with 27 additions and 0 deletions

View File

@ -6,6 +6,10 @@ use App\Models\Entry;
use App\Models\Room; use App\Models\Room;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for PrintSignInSheets
class PrintSignInSheets class PrintSignInSheets
{ {
protected $pdf; protected $pdf;

View File

@ -5,6 +5,10 @@ namespace App\Actions\Print;
use App\Models\Ensemble; use App\Models\Ensemble;
use Codedge\Fpdf\Fpdf\Fpdf; use Codedge\Fpdf\Fpdf\Fpdf;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for PrintStandNameTags
class PrintStandNameTags class PrintStandNameTags
{ {
public function __construct() public function __construct()

View File

@ -8,6 +8,10 @@ use Illuminate\Support\Collection;
use function auditionSetting; use function auditionSetting;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for QuarterPageCards
class QuarterPageCards implements PrintCards class QuarterPageCards implements PrintCards
{ {
protected $pdf; protected $pdf;

View File

@ -4,6 +4,10 @@ namespace App\Actions\Print;
use Codedge\Fpdf\Fpdf\Fpdf; use Codedge\Fpdf\Fpdf\Fpdf;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for signInPDF
class signInPDF extends Fpdf class signInPDF extends Fpdf
{ {
public $roomOn; public $roomOn;

View File

@ -6,6 +6,10 @@ use App\Actions\Tabulation\RankAuditionEntries;
use App\Models\Room; use App\Models\Room;
use Illuminate\Support\Facades\App; use Illuminate\Support\Facades\App;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for ExportEntryData
class ExportEntryData class ExportEntryData
{ {
public function __construct() public function __construct()

View File

@ -7,6 +7,10 @@ use App\Models\Event;
use App\Models\Seat; use App\Models\Seat;
use Illuminate\Support\Facades\App; use Illuminate\Support\Facades\App;
/**
* @codeCoverageIgnore
*/
// TODO figure out testing for GetExportData
class GetExportData class GetExportData
{ {
public function __construct() public function __construct()

View File

@ -4,6 +4,9 @@ namespace App\Actions\Tabulation;
use App\Models\Entry; use App\Models\Entry;
/**
* @codeCoverageIgnore
*/
class ForceRecalculateTotalScores class ForceRecalculateTotalScores
{ {
public function __invoke(): void public function __invoke(): void