ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullObjectiveTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Setup;
26 
27 class NullObjectiveTest extends TestCase
28 {
29  protected Objective\NullObjective $o;
30 
31  public function setUp(): void
32  {
33  $this->o = new Objective\NullObjective();
34  }
35 
36  public function testGetHash(): void
37  {
38  $this->assertIsString($this->o->getHash());
39  }
40 
41  public function testGetLabel(): void
42  {
43  $this->assertEquals("Nothing to do.", $this->o->getLabel());
44  }
45 
46  public function testIsNotable(): void
47  {
48  $this->assertFalse($this->o->isNotable());
49  }
50 
51  public function testGetPreconditions(): void
52  {
53  $env = $this->createMock(Setup\Environment::class);
54 
55  $pre = $this->o->getPreconditions($env);
56  $this->assertEquals([], $pre);
57  }
58 
59  public function testAchieve(): void
60  {
61  $env = $this->createMock(Setup\Environment::class);
62 
63  $res = $this->o->achieve($env);
64  $this->assertSame($env, $res);
65  }
66 }
$res
Definition: ltiservices.php:66
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...