ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
RessourceIDTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use PHPUnit\Framework\TestCase;
24
25class RessourceIDTest extends TestCase
26{
27 public function testIDs(): void
28 {
29 $id = new RessourceID(13, 7, 'type');
30
31 $this->assertSame($id->objID(), 13);
32 $this->assertSame($id->subID(), 7);
33 $this->assertSame($id->type(), 'type');
34 }
35}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23