◆ getAndWithPassDeletionAllowedDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithPassDeletionAllowedDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithReportingDateDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithReportingDateDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithScoreReportingDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithScoreReportingDataProvider |
( |
| ) |
|
|
static |
Definition at line 43 of file SettingsResultSummaryTest.php.
46 [ScoreReportingTypes::SCORE_REPORTING_DISABLED],
47 [ScoreReportingTypes::SCORE_REPORTING_FINISHED],
48 [ScoreReportingTypes::SCORE_REPORTING_AFTER_PASSED]
◆ getAndWithShowGradingMarkEnabledDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithShowGradingMarkEnabledDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithShowGradingStatusEnabledDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithShowGradingStatusEnabledDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithShowPassDetailsDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithShowPassDetailsDataProvider |
( |
| ) |
|
|
static |
◆ testConstruct()
ScoreReporting\SettingsResultSummaryTest::testConstruct |
( |
| ) |
|
Definition at line 28 of file SettingsResultSummaryTest.php.
30 $settingsResultSummary =
new SettingsResultSummary(0);
31 $this->assertInstanceOf(SettingsResultSummary::class, $settingsResultSummary);
◆ testGetAndWithPassDeletionAllowed()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithPassDeletionAllowed |
( |
bool |
$IO | ) |
|
Definition at line 101 of file SettingsResultSummaryTest.php.
103 $settingsResultSummary =
new SettingsResultSummary(0);
104 $settingsResultSummary = $settingsResultSummary->withPassDeletionAllowed($IO);
105 $this->assertEquals($IO, $settingsResultSummary->getPassDeletionAllowed());
◆ testGetAndWithReportingDate()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithReportingDate |
( |
?\DateTimeImmutable |
$IO | ) |
|
Definition at line 53 of file SettingsResultSummaryTest.php.
55 $settingsResultSummary =
new SettingsResultSummary(0);
56 $settingsResultSummary = $settingsResultSummary->withReportingDate($IO);
57 $this->assertEquals($IO, $settingsResultSummary->getReportingDate());
◆ testGetAndWithScoreReporting()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithScoreReporting |
( |
ScoreReportingTypes |
$IO | ) |
|
◆ testGetAndWithShowGradingMarkEnabled()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowGradingMarkEnabled |
( |
bool |
$IO | ) |
|
Definition at line 85 of file SettingsResultSummaryTest.php.
87 $settingsResultSummary =
new SettingsResultSummary(0);
88 $settingsResultSummary = $settingsResultSummary->withShowGradingMarkEnabled($IO);
89 $this->assertEquals($IO, $settingsResultSummary->getShowGradingMarkEnabled());
◆ testGetAndWithShowGradingStatusEnabled()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowGradingStatusEnabled |
( |
bool |
$IO | ) |
|
Definition at line 69 of file SettingsResultSummaryTest.php.
71 $settingsResultSummary =
new SettingsResultSummary(0);
72 $settingsResultSummary = $settingsResultSummary->withShowGradingStatusEnabled($IO);
73 $this->assertEquals($IO, $settingsResultSummary->getShowGradingStatusEnabled());
◆ testGetAndWithShowPassDetails()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowPassDetails |
( |
bool |
$IO | ) |
|
Definition at line 117 of file SettingsResultSummaryTest.php.
119 $settingsResultSummary =
new SettingsResultSummary(0);
120 $settingsResultSummary = $settingsResultSummary->withShowPassDetails($IO);
121 $this->assertEquals($IO, $settingsResultSummary->getShowPassDetails());
The documentation for this class was generated from the following file: