4 require_once __DIR__ .
'/bootstrap.php';
11 public function testConstructor()
20 public function testTask()
26 $task =
$factory->task(
"title", 123, 1234, 1000);
29 $this->assertEquals(
'title', $task->getTitle());
30 $this->assertEquals(123, $task->getRefId());
31 $this->assertEquals(1234, $task->getDeadline());
32 $this->assertEquals(1000, $task->getStartingTime());
33 $this->assertEquals(0, $task->getWspId());
36 public function testCollector()
47 public function testAllProviders()
53 $providers =
$factory->getAllProviders(
false, null);
Derived task data object.
Factory for derived task subservice.
Base test class for tasks tests.