ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilStudyProgrammeAutoMembershipsSourceTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  protected int $prg_obj_id;
26  protected string $source_type;
27  protected int $source_id;
28  protected bool $enbl;
29  protected int $usr_id;
31 
32  protected function setUp(): void
33  {
34  $this->prg_obj_id = 123;
36  $this->source_id = 666;
37  $this->enbl = true;
38  $this->usr_id = 6;
39  $this->dat = new DateTimeImmutable('2019-06-05 15:25:12');
40  }
41 
43  {
45  $this->prg_obj_id,
46  $this->source_type,
47  $this->source_id,
48  $this->enbl,
49  $this->usr_id,
50  $this->dat,
51  false
52  );
53  $this->assertInstanceOf(
54  ilStudyProgrammeAutoMembershipSource::class,
55  $ams
56  );
57  return $ams;
58  }
59 
64  {
65  $this->assertEquals(
66  $this->prg_obj_id,
67  $ams->getPrgObjId()
68  );
69  }
70 
75  {
76  $this->assertEquals(
77  $this->source_type,
78  $ams->getSourceType()
79  );
80  }
85  {
86  $this->assertEquals(
87  $this->source_id,
88  $ams->getSourceId()
89  );
90  }
91 
96  {
97  $this->assertEquals(
98  $this->usr_id,
99  $ams->getLastEditorId()
100  );
101  }
102 
107  {
108  $this->assertEquals(
109  $this->dat,
110  $ams->getLastEdited()
111  );
112  }
113 }
testGetSourceId(ilStudyProgrammeAutoMembershipSource $ams)
testConstruction
testGetLastEditorId(ilStudyProgrammeAutoMembershipSource $ams)
testConstruction
testGetLastEdited(ilStudyProgrammeAutoMembershipSource $ams)
testConstruction
testGetPrgObjId(ilStudyProgrammeAutoMembershipSource $ams)
testConstruction
testGetSourceType(ilStudyProgrammeAutoMembershipSource $ams)
testConstruction