Definition at line 35 of file BasicTaskFactoryTest.php.
◆ testBasicFactory()
BackgroundTasks\Implementation\Tasks\BasicTaskFactoryTest::testBasicFactory |
( |
| ) |
|
Definition at line 37 of file BasicTaskFactoryTest.php.
References Vendor\Package\$a, Vendor\Package\$b, and $dic.
39 $dic =
new Container();
40 $injector =
new Injector(
$dic,
new BaseDependencyMap());
41 $taskFactory =
new BasicTaskFactory($injector);
42 $plusJob = $taskFactory->createTask(PlusJob::class, [1, 2]);
43 $this->assertTrue($plusJob instanceof PlusJob);
44 $plusJobInput = $plusJob->getInput();
45 $one =
new IntegerValue();
47 $this->assertTrue($plusJobInput[0]->equals($one));
49 $a =
new IntegerValue();
51 $b =
new IntegerValue();
53 $plusJob = $taskFactory->createTask(PlusJob::class, [
$a,
$b]);
54 $this->assertTrue($plusJob instanceof PlusJob);
55 $plusJobInput = $plusJob->getInput();
56 $this->assertTrue($plusJobInput[0]->equals($one));
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
The documentation for this class was generated from the following file: