◆ getAndWithPassDeletionAllowedDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithPassDeletionAllowedDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithReportingDateDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithReportingDateDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithScoreReportingDataProvider()
static ScoreReporting\SettingsResultSummaryTest::getAndWithScoreReportingDataProvider |
( |
| ) |
|
|
static |
Definition at line 45 of file SettingsResultSummaryTest.php.
48 [ScoreReportingTypes::SCORE_REPORTING_DISABLED],
49 [ScoreReportingTypes::SCORE_REPORTING_FINISHED],
50 [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 | ) |
|
getAndWithPassDeletionAllowedDataProvider
Definition at line 111 of file SettingsResultSummaryTest.php.
113 $settingsResultSummary =
new SettingsResultSummary(0);
114 $settingsResultSummary = $settingsResultSummary->withPassDeletionAllowed($IO);
115 $this->assertEquals($IO, $settingsResultSummary->getPassDeletionAllowed());
◆ testGetAndWithReportingDate()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithReportingDate |
( |
?\DateTimeImmutable |
$IO | ) |
|
getAndWithReportingDateDataProvider
Definition at line 57 of file SettingsResultSummaryTest.php.
59 $settingsResultSummary =
new SettingsResultSummary(0);
60 $settingsResultSummary = $settingsResultSummary->withReportingDate($IO);
61 $this->assertEquals($IO, $settingsResultSummary->getReportingDate());
◆ testGetAndWithScoreReporting()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithScoreReporting |
( |
ScoreReportingTypes |
$IO | ) |
|
getAndWithScoreReportingDataProvider
Definition at line 37 of file SettingsResultSummaryTest.php.
41 (
new SettingsResultSummary(0))->withScoreReporting($IO)->getScoreReporting()
◆ testGetAndWithShowGradingMarkEnabled()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowGradingMarkEnabled |
( |
bool |
$IO | ) |
|
getAndWithShowGradingMarkEnabledDataProvider
Definition at line 93 of file SettingsResultSummaryTest.php.
95 $settingsResultSummary =
new SettingsResultSummary(0);
96 $settingsResultSummary = $settingsResultSummary->withShowGradingMarkEnabled($IO);
97 $this->assertEquals($IO, $settingsResultSummary->getShowGradingMarkEnabled());
◆ testGetAndWithShowGradingStatusEnabled()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowGradingStatusEnabled |
( |
bool |
$IO | ) |
|
getAndWithShowGradingStatusEnabledDataProvider
Definition at line 75 of file SettingsResultSummaryTest.php.
77 $settingsResultSummary =
new SettingsResultSummary(0);
78 $settingsResultSummary = $settingsResultSummary->withShowGradingStatusEnabled($IO);
79 $this->assertEquals($IO, $settingsResultSummary->getShowGradingStatusEnabled());
◆ testGetAndWithShowPassDetails()
ScoreReporting\SettingsResultSummaryTest::testGetAndWithShowPassDetails |
( |
bool |
$IO | ) |
|
getAndWithShowPassDetailsDataProvider
Definition at line 129 of file SettingsResultSummaryTest.php.
131 $settingsResultSummary =
new SettingsResultSummary(0);
132 $settingsResultSummary = $settingsResultSummary->withShowPassDetails($IO);
133 $this->assertEquals($IO, $settingsResultSummary->getShowPassDetails());
The documentation for this class was generated from the following file: