ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BackgroundTasks\Implementation\Tasks\BasicTaskFactoryTest Class Reference
+ Inheritance diagram for BackgroundTasks\Implementation\Tasks\BasicTaskFactoryTest:
+ Collaboration diagram for BackgroundTasks\Implementation\Tasks\BasicTaskFactoryTest:

Public Member Functions

 testBasicFactory ()
 

Detailed Description

Definition at line 35 of file BasicTaskFactoryTest.php.

Member Function Documentation

◆ testBasicFactory()

BackgroundTasks\Implementation\Tasks\BasicTaskFactoryTest::testBasicFactory ( )

Definition at line 37 of file BasicTaskFactoryTest.php.

References Vendor\Package\$a, Vendor\Package\$b, and $dic.

37  : void
38  {
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();
46  $one->setValue(1);
47  $this->assertTrue($plusJobInput[0]->equals($one));
48 
49  $a = new IntegerValue();
50  $a->setValue(1);
51  $b = new IntegerValue();
52  $b->setValue(2);
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));
57  }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
$dic
Definition: result.php:31

The documentation for this class was generated from the following file: