ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DataTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 class DataTest extends TestCase
27 {
28  public function testTypeAndValue(): void
29  {
30  $data = new Data(
31  Type::VOCAB_VALUE,
32  'value',
34  );
35 
36  $this->assertSame($data->type(), Type::VOCAB_VALUE);
37  $this->assertSame($data->value(), 'value');
38  $this->assertSame($data->vocabularySlot(), SlotIdentifier::CLASSIFICATION_TAXON_ENTRY);
39  }
40 }