3 declare(strict_types=1);
31 $agent_finder = $this->createMock(Setup\AgentFinder::class);
33 $agent = $this->createMock(Setup\AgentCollection::class);
35 ->expects($this->once())
40 $objective = $this->createMock(Setup\Objective::class);
42 ->expects($this->once())
43 ->method(
"getBuildArtifactObjective")
45 ->willReturn($objective);
48 ->expects($this->once())
49 ->method(
"getPreconditions")
53 ->expects($this->once())
55 ->will($this->returnCallback(
function (Setup\
Environment $e) {
60 ->expects($this->once())
61 ->method(
"isApplicable")
65 $tester =
new CommandTester($command);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.