ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TermTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Glossary\Flashcard;
22 
24 
25 class TermTest extends TestCase
26 {
27  protected function setUp(): void
28  {
29  parent::setUp();
30  }
31 
32  protected function tearDown(): void
33  {
34  }
35 
36  public function testProperties()
37  {
38  $term = new Term(
39  1,
40  2,
41  3,
42  4,
43  "2024-01-01 01:00:00"
44  );
45 
46  $this->assertSame(1, $term->getTermId());
47  $this->assertSame(2, $term->getUserId());
48  $this->assertSame(3, $term->getGloId());
49  $this->assertSame(4, $term->getBoxNr());
50  $this->assertSame("2024-01-01 01:00:00", $term->getLastAccess());
51  }
52 
54  {
55  $term = new Term(
56  1,
57  2,
58  3,
59  4
60  );
61 
62  $this->assertSame(1, $term->getTermId());
63  $this->assertSame(2, $term->getUserId());
64  $this->assertSame(3, $term->getGloId());
65  $this->assertSame(4, $term->getBoxNr());
66  $this->assertNull($term->getLastAccess());
67  }
68 }