ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCertificateTypeClassMapTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 {
31 
32  protected function setUp(): void
33  {
34  $this->classMap = new ilCertificateTypeClassMap();
35  }
36 
37  public function testFetchCoursePlaceHolderClass(): void
38  {
39  $class = $this->classMap->getPlaceHolderClassNameByType('crs');
40 
41  $this->assertSame(CoursePlaceholderValues::class, $class);
42  }
43 
44  public function testFetchTestPlaceHolderClass(): void
45  {
46  $class = $this->classMap->getPlaceHolderClassNameByType('tst');
47 
48  $this->assertSame(TestPlaceholderValues::class, $class);
49  }
50 
51  public function testFetchExercisePlaceHolderClass(): void
52  {
53  $class = $this->classMap->getPlaceHolderClassNameByType('exc');
54 
55  $this->assertSame(ExercisePlaceholderValues::class, $class);
56  }
57 
58  public function testFetchScormPlaceHolderClass(): void
59  {
60  $class = $this->classMap->getPlaceHolderClassNameByType('sahs');
61 
62  $this->assertSame(ilScormPlaceholderValues::class, $class);
63  }
64 
66  {
67  $this->expectException(ilException::class);
68 
69  $this->classMap->getPlaceHolderClassNameByType('something');
70 
71  $this->fail('Should never happen. No Exception thrown?');
72  }
73 
74  public function testIsCourseExisting(): void
75  {
76  $result = $this->classMap->typeExistsInMap('crs');
77 
78  $this->assertTrue($result);
79  }
80 
81  public function testIsTestExisting(): void
82  {
83  $result = $this->classMap->typeExistsInMap('tst');
84 
85  $this->assertTrue($result);
86  }
87 
88  public function testIsExerciseExisting(): void
89  {
90  $result = $this->classMap->typeExistsInMap('exc');
91 
92  $this->assertTrue($result);
93  }
94 
95  public function testUnknownTypeIsNotExisting(): void
96  {
97  $result = $this->classMap->typeExistsInMap('something');
98 
99  $this->assertFalse($result);
100  }
101 }
Class ilCertificateBaseTestCase.