5 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../../Base.php");
21 $this->data_factory =
new Data\Factory();
27 if (!isset($this->lng)) {
28 $this->lng = $this->createMock(\ilLanguage::class);
35 return new \ILIAS\Refinery\Factory($this->data_factory, $this->
buildLanguage());
49 $factory =
new class extends NoUIFactory {
64 $format = $this->data_factory->dateFormat()->germanShort();
65 $duration = $this->factory->duration(
'label',
'byline')
70 $duration->getFormat()
76 $dat = new \DateTimeImmutable(
'2019-01-09');
77 $duration = $this->factory->duration(
'label',
'byline')
82 $duration->getMinValue()
88 $dat = new \DateTimeImmutable(
'2019-01-09');
89 $duration = $this->factory->duration(
'label',
'byline')
94 $duration->getMaxValue()
100 $datetime = $this->factory->duration(
'label',
'byline');
101 $this->assertFalse($datetime->getUseTime());
102 $this->assertTrue($datetime->withUseTime(
true)->getUseTime());
107 $datetime = $this->factory->duration(
'label',
'byline');
108 $this->assertFalse($datetime->getTimeOnly());
109 $this->assertTrue($datetime->withTimeOnly(
true)->getTimeOnly());
114 $datetime = $this->factory->duration(
'label',
'byline');
115 $this->assertNull($datetime->getTimeZone());
116 $tz =
'Europe/Moscow';
119 $datetime->withTimeZone($tz)->getTimeZone()
125 $this->expectException(\InvalidArgumentException::class);
126 $datetime = $this->factory->duration(
'label',
'byline');
127 $tz =
'NOT/aValidTZ';
128 $datetime->withTimeZone(
$tz);
Provides common functionality for UI tests.