Definition at line 23 of file SettingsAccessTest.php.
◆ getAndWithEndTimeDataProvider()
static SettingsAccessTest::getAndWithEndTimeDataProvider |
( |
| ) |
|
|
static |
Definition at line 85 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 119 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 51 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 | ) |
|
Definition at line 77 of file SettingsAccessTest.php.
81 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
82 $this->assertEquals($io, $settings_access->getEndTime());
◆ testGetAndWithEndTimeEnabled()
SettingsAccessTest::testGetAndWithEndTimeEnabled |
( |
bool |
$io | ) |
|
Definition at line 60 of file SettingsAccessTest.php.
62 $settings_access = (
new SettingsAccess(0))->withEndTimeEnabled($io);
64 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
65 $this->assertEquals($io, $settings_access->getEndTimeEnabled());
◆ testGetAndWithFixedParticipants()
SettingsAccessTest::testGetAndWithFixedParticipants |
( |
bool |
$io | ) |
|
Definition at line 129 of file SettingsAccessTest.php.
131 $settings_access = (
new SettingsAccess(0))->withFixedParticipants($io);
133 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
134 $this->assertEquals($io, $settings_access->getFixedParticipants());
◆ testGetAndWithPassword()
SettingsAccessTest::testGetAndWithPassword |
( |
?string |
$io | ) |
|
Definition at line 111 of file SettingsAccessTest.php.
115 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
116 $this->assertEquals($io, $settings_access->getPassword());
◆ testGetAndWithPasswordEnabled()
SettingsAccessTest::testGetAndWithPasswordEnabled |
( |
bool |
$io | ) |
|
Definition at line 94 of file SettingsAccessTest.php.
96 $settings_access = (
new SettingsAccess(0))->withPasswordEnabled($io);
98 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
99 $this->assertEquals($io, $settings_access->getPasswordEnabled());
◆ testGetAndWithStartTime()
SettingsAccessTest::testGetAndWithStartTime |
( |
?DateTimeImmutable |
$io | ) |
|
Definition at line 43 of file SettingsAccessTest.php.
47 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
48 $this->assertEquals($io, $settings_access->getStartTime());
◆ testGetAndWithStartTimeEnabled()
SettingsAccessTest::testGetAndWithStartTimeEnabled |
( |
bool |
$io | ) |
|
Definition at line 26 of file SettingsAccessTest.php.
28 $settings_access = (
new SettingsAccess(0))->withStartTimeEnabled($io);
30 $this->assertInstanceOf(SettingsAccess::class, $settings_access);
31 $this->assertEquals($io, $settings_access->getStartTimeEnabled());
The documentation for this class was generated from the following file: