19 declare(strict_types=1);
39 $this->assertEquals(self::VALID_POINTS_1, $obj->getPoints());
40 $this->assertEquals(self::VALID_STATUS_1, $obj->getStatus());
49 $this->assertTrue(
true);
59 $this->assertTrue(
true);
69 $this->assertTrue(
true);
77 $new = $obj->withPoints(self::VALID_POINTS_2);
79 $this->assertEquals(self::VALID_POINTS_1, $obj->getPoints());
80 $this->assertEquals(self::VALID_POINTS_2, $new->getPoints());
88 $obj->withPoints(self::INVALID_POINTS);
91 $this->assertTrue(
true);
99 $new = $obj->withStatus(self::VALID_STATUS_2);
101 $this->assertEquals(self::VALID_STATUS_1, $obj->getStatus());
102 $this->assertEquals(self::VALID_STATUS_2, $new->getStatus());
110 $obj->withStatus(self::INVALID_STATUS);
113 $this->assertTrue(
true);
119 $lng = $this->createMock(ilLanguage::class);
133 $lng_consecutive_calls = [];
134 $lng->expects($this->atLeastOnce())
136 ->willReturnCallback(
137 function (
$txt) use (&$lng_consecutive_calls) {
138 $lng_consecutive_calls[] =
$txt;
143 $expected_consecutive_calls = [
149 'prg_status_outdated',
154 $field = $obj->toFormInput(
160 $this->assertEquals($expected_consecutive_calls, $lng_consecutive_calls);
162 $this->assertInstanceOf(
169 $this->assertInstanceOf(
174 $this->assertInstanceOf(
Interface Observer Contains several chained tasks and infos about them.
testFailCreateWithInvalidStatus()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testFailCreateWithInvalidPointAndInvalidStatus()
testSuccessfulWithPoints()
testFailCreateWithInvalidPoints()
testSuccessfulWithStatus()