ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MetaTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
28 require_once __DIR__ . '/../ContainerMock.php';
29 
30 class MetaTest extends TestCase
31 {
32  use ContainerMock;
33 
34  public function testConstruct(): void
35  {
36  $this->assertInstanceOf(Meta::class, new Meta(8, $this->mock(Edit::class), $this->mock(Edit::class)));
37  }
38 
39  public function testGetter(): void
40  {
41  $this->assertGetter(Meta::class, [
42  'sorting' => 348,
43  'lastModification' => $this->mock(Edit::class),
44  'creation' => $this->mock(Edit::class),
45  ]);
46  }
47 }