Definition at line 23 of file SettingsAccessTest.php.
◆ getAndWithEndTimeDataProvider()
static SettingsAccessTest::getAndWithEndTimeDataProvider |
( |
| ) |
|
|
static |
Definition at line 93 of file SettingsAccessTest.php.
References null.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ getAndWithEndTimeEnabledDataProvider()
static SettingsAccessTest::getAndWithEndTimeEnabledDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithFixedParticipantsDataProvider()
static SettingsAccessTest::getAndWithFixedParticipantsDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithPasswordDataProvider()
static SettingsAccessTest::getAndWithPasswordDataProvider |
( |
| ) |
|
|
static |
Definition at line 131 of file SettingsAccessTest.php.
References null.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ getAndWithPasswordEnabledDataProvider()
static SettingsAccessTest::getAndWithPasswordEnabledDataProvider |
( |
| ) |
|
|
static |
◆ getAndWithStartTimeDataProvider()
static SettingsAccessTest::getAndWithStartTimeDataProvider |
( |
| ) |
|
|
static |
Definition at line 55 of file SettingsAccessTest.php.
References null.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ getAndWithStartTimeEnabledDataProvider()
static SettingsAccessTest::getAndWithStartTimeEnabledDataProvider |
( |
| ) |
|
|
static |
◆ testGetAndWithEndTime()
SettingsAccessTest::testGetAndWithEndTime |
( |
?DateTimeImmutable |
$io | ) |
|
getAndWithEndTimeDataProvider
Definition at line 85 of file SettingsAccessTest.php.
89 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
90 $this->assertEquals($io, $settings_access->getEndTime());
◆ testGetAndWithEndTimeEnabled()
SettingsAccessTest::testGetAndWithEndTimeEnabled |
( |
bool |
$io | ) |
|
getAndWithEndTimeEnabledDataProvider
Definition at line 66 of file SettingsAccessTest.php.
68 $settings_access = (
new SettingsAccess(0))->withEndTimeEnabled($io);
70 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
71 $this->assertEquals($io, $settings_access->getEndTimeEnabled());
◆ testGetAndWithFixedParticipants()
SettingsAccessTest::testGetAndWithFixedParticipants |
( |
bool |
$io | ) |
|
getAndWithFixedParticipantsDataProvider
Definition at line 143 of file SettingsAccessTest.php.
145 $settings_access = (
new SettingsAccess(0))->withFixedParticipants($io);
147 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
148 $this->assertEquals($io, $settings_access->getFixedParticipants());
◆ testGetAndWithPassword()
SettingsAccessTest::testGetAndWithPassword |
( |
?string |
$io | ) |
|
getAndWithPasswordDataProvider
Definition at line 123 of file SettingsAccessTest.php.
127 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
128 $this->assertEquals($io, $settings_access->getPassword());
◆ testGetAndWithPasswordEnabled()
SettingsAccessTest::testGetAndWithPasswordEnabled |
( |
bool |
$io | ) |
|
getAndWithPasswordEnabledDataProvider
Definition at line 104 of file SettingsAccessTest.php.
106 $settings_access = (
new SettingsAccess(0))->withPasswordEnabled($io);
108 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
109 $this->assertEquals($io, $settings_access->getPasswordEnabled());
◆ testGetAndWithStartTime()
SettingsAccessTest::testGetAndWithStartTime |
( |
?DateTimeImmutable |
$io | ) |
|
getAndWithStartTimeDataProvider
Definition at line 47 of file SettingsAccessTest.php.
51 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
52 $this->assertEquals($io, $settings_access->getStartTime());
◆ testGetAndWithStartTimeEnabled()
SettingsAccessTest::testGetAndWithStartTimeEnabled |
( |
bool |
$io | ) |
|
getAndWithStartTimeEnabledDataProvider
Definition at line 28 of file SettingsAccessTest.php.
30 $settings_access = (
new SettingsAccess(0))->withStartTimeEnabled($io);
32 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
33 $this->assertEquals($io, $settings_access->getStartTimeEnabled());
The documentation for this class was generated from the following file: