18 require_once __DIR__ .
'/bootstrap.php';
25 public function testConstructor()
34 public function testTask():
void 40 $task =
$factory->task(
"title", 123, 1234, 1000);
43 $this->assertEquals(
'title', $task->getTitle());
44 $this->assertEquals(123, $task->getRefId());
45 $this->assertEquals(1234, $task->getDeadline());
46 $this->assertEquals(1000, $task->getStartingTime());
47 $this->assertEquals(0, $task->getWspId());
50 public function testCollector():
void 61 public function testAllProviders():
void 67 $providers =
$factory->getAllProviders();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Base test class for tasks tests.