3 declare(strict_types=1);
35 $array_util = Mockery::mock(
'alias:' . ilLink::class);
36 $array_util->shouldReceive(
'_getStaticLink')
39 ->andReturn(
'tar.13');
40 $array_util->shouldReceive(
'_getStaticLink')
42 ->with(0,
'wiki',
true,
'&target=wiki_wpage_14')
43 ->andReturn(
'wiki_page.14');
44 $array_util->shouldReceive(
'_getStaticLink')
46 ->with(0,
'git',
true,
'&target=git_15')
47 ->andReturn(
'gl_term.15');
48 $array_util->shouldReceive(
'_getStaticLink')
51 ->andReturn(
'lm_page.16');
53 $param1 = $this->getMockBuilder(ilWebLinkParameter::class)
54 ->disableOriginalConstructor()
55 ->onlyMethods([
'appendToLink'])
57 $param1->expects($this->once())
58 ->method(
'appendToLink')
60 ->willReturn(
'tar.13?param1');
61 $param2 = $this->getMockBuilder(ilWebLinkParameter::class)
62 ->disableOriginalConstructor()
63 ->onlyMethods([
'appendToLink'])
65 $param2->expects($this->once())
66 ->method(
'appendToLink')
67 ->with(
'tar.13?param1')
68 ->willReturn(
'tar.13?param1¶m2');
83 'tar.13?param1¶m2',
84 $item->getResolvedLink(
true)
88 $item->getResolvedLink(
false)
105 $item->getResolvedLink(
false)
122 $item->getResolvedLink(
false)
139 $item->getResolvedLink(
false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testGetResolvedLink()
disabled
Unit tests for ilWebLinkItemInternal.