Exclude reports and print from testing for now
This commit is contained in:
parent
c67c1ad79c
commit
ba15191fca
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@ use Illuminate\Support\Collection;
|
|||
|
||||
use function auditionSetting;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
// TODO figure out testing for QuarterPageCards
|
||||
class QuarterPageCards implements PrintCards
|
||||
{
|
||||
protected $pdf;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -4,6 +4,9 @@ namespace App\Actions\Tabulation;
|
|||
|
||||
use App\Models\Entry;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class ForceRecalculateTotalScores
|
||||
{
|
||||
public function __invoke(): void
|
||||
|
|
|
|||
Loading…
Reference in New Issue