5 declare(strict_types=1);
22 $this->assertEquals(self::VALID_POINTS_1, $obj->getPoints());
23 $this->assertEquals(self::VALID_STATUS_1, $obj->getStatus());
30 $this->assertTrue(
false);
32 $this->assertTrue(
true);
40 $this->assertTrue(
false);
42 $this->assertTrue(
true);
50 $this->assertTrue(
false);
52 $this->assertTrue(
true);
60 $new = $obj->withPoints(self::VALID_POINTS_2);
62 $this->assertEquals(self::VALID_POINTS_1, $obj->getPoints());
63 $this->assertEquals(self::VALID_POINTS_2, $new->getPoints());
71 $obj->withPoints(self::INVALID_POINTS);
72 $this->assertTrue(
false);
74 $this->assertTrue(
true);
82 $new = $obj->withStatus(self::VALID_STATUS_2);
84 $this->assertEquals(self::VALID_STATUS_1, $obj->getStatus());
85 $this->assertEquals(self::VALID_STATUS_2, $new->getStatus());
93 $obj->withStatus(self::INVALID_STATUS);
94 $this->assertTrue(
false);
96 $this->assertTrue(
true);
102 $lng = $this->createMock(ilLanguage::class);
115 $lng->expects($this->atLeastOnce())
119 [
'prg_points_byline'],
121 [
'prg_status_draft'],
122 [
'prg_status_active'],
123 [
'prg_status_outdated'],
124 [
'prg_status_byline'],
127 ->will($this->onConsecutiveCalls(
133 'prg_status_outdated',
139 $field = $obj->toFormInput(
145 $this->assertInstanceOf(
146 'ILIAS\UI\Implementation\Component\Input\Field\Section',
150 $inputs = $field->getInputs();
152 $this->assertInstanceOf(
153 'ILIAS\UI\Implementation\Component\Input\Field\Numeric',
157 $this->assertInstanceOf(
158 'ILIAS\UI\Implementation\Component\Input\Field\Select',
Class ChatMainBarProvider .
testFailCreateWithInvalidStatus()
testFailCreateWithInvalidPointAndInvalidStatus()
testSuccessfulWithPoints()
testFailCreateWithInvalidPoints()
testSuccessfulWithStatus()