19 declare(strict_types=1);
37 require_once __DIR__ .
'/../../ContainerMock.php';
45 $this->assertInstanceOf(ModifyFooter::class,
new ModifyFooter(
46 $this->mock(UI::class),
47 $this->mock(User::class),
48 $this->mock(Provide::class),
57 $return = fn() =>
null;
58 $footer = fn() => $return;
61 $this->mock(UI::class),
62 $this->mockTree(User::class, [
'acceptedVersion' =>
new Ok($this->mock(DocumentContent::class))]),
63 $this->mock(Provide::class),
65 fn() => $this->mock(ilTemplate::class),
69 $this->assertSame($return, $instance($footer));
74 $dummy_uri = $this->mock(URI::class);
75 $return = fn() =>
null;
76 $footer =
function (
$id, $title, $uri) use ($dummy_uri, $return) {
77 $this->assertSame(
'foo',
$id);
78 $this->assertSame(
'translated', $title);
79 $this->assertSame($dummy_uri, $uri);
84 $this->mockTree(UI::class, [
'txt' =>
'translated']),
85 $this->mockTree(User::class, [
'acceptedVersion' =>
new Error(
'Not found.'),
'isLoggedIn' =>
false]),
86 $this->mockTree(Provide::class, [
'id' =>
'foo']),
88 fn() => $this->mock(ilTemplate::class),
92 $this->assertSame($return, $instance($footer));
98 $this->mock(UI::class),
99 $this->mock(User::class),
100 $this->mock(Provide::class),
102 fn() => $this->mock(ilTemplate::class),
106 $modal = $instance->renderModal($this->mock(DocumentContent::class));
107 $this->assertInstanceOf(Modal::class, $modal);
112 $template = $this->mock(ilTemplate::class);
113 $template->expects(self::exactly(3))->method(
'setVariable');
114 $template->expects(self::once())->method(
'get');
117 $this->mock(UI::class),
118 $this->mock(User::class),
119 $this->mock(Provide::class),
125 $this->assertInstanceOf(Component::class, $instance->withdrawalButton());
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A result encapsulates a value or an error and simplifies the handling of those.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins