|
| testImplementsInterfaces () |
|
| setUp () |
|
| testProperNamespace () |
|
| testProperName () |
|
| testCheckYamlExtraction (ReflectionMethod $method_reflection, string $name) |
| Tests whether the YAML Kitchen Sink info can be parsed. More...
|
|
| testReturnType (ReflectionMethod $method_reflection, string $name) |
| Tests whether the method either returns a factory or a component. More...
|
|
| testFactoryMethodNameCompatibleDocstring (ReflectionMethod $method_reflection, string $name) |
| Tests whether the method name matches the return doctring? More...
|
|
| testMethodParams (ReflectionMethod $method_reflection, string $name) |
| Tests whether methods returning factories have no parameters. More...
|
|
| testKitchensinkInfoDescription (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoRivals (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoBackground (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoFeatureWiki (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoJavaScript (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoRules (ReflectionMethod $method_reflection, string $name) |
|
| testKitchensinkInfoContext (ReflectionMethod $method_reflection, string $name) |
|
| kitchensinkInfoSettingsMergedWithDefaults (string $name) |
|
Definition at line 27 of file ActionFactoryTest.php.
◆ buildFactories()
ActionFactoryTest::buildFactories |
( |
| ) |
|
|
protected |
◆ testImplementsInterfaces()
ActionFactoryTest::testImplementsInterfaces |
( |
| ) |
|
Definition at line 45 of file ActionFactoryTest.php.
References Vendor\Package\$f, $token, and buildFactories().
48 $target = $df->uri(
'http://wwww.ilias.de?ref_id=1');
50 list($builder,
$token) = array_values(
51 $url_builder->acquireParameter([
'namespace'],
'rowids')
54 $standard =
$f->standard(
"", $builder,
$token);
55 $this->assertInstanceOf(
Action\Action::class, $standard);
56 $this->assertInstanceOf(
Action\Standard::class, $standard);
58 $single =
$f->single(
"", $builder,
$token);
59 $this->assertInstanceOf(
Action\Action::class, $single);
60 $this->assertInstanceOf(
Action\Single::class, $single);
62 $multi =
$f->multi(
"", $builder,
$token);
63 $this->assertInstanceOf(
Action\Action::class, $multi);
64 $this->assertInstanceOf(
Action\Multi::class, $multi);
◆ $factory_title
string ActionFactoryTest::$factory_title = 'ILIAS\\UI\\Component\\Table\\Action\\Factory' |
|
static |
◆ $kitchensink_info_settings
array ActionFactoryTest::$kitchensink_info_settings |
|
static |
◆ rules
array ActionFactoryTest::rules |
|
static |
Initial value:=> false],
"single" => ["context" => false, "rules" => false],
"multi" => ["context" => false, "rules" => false]
]
Definition at line 30 of file ActionFactoryTest.php.
The documentation for this class was generated from the following file: