Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class SetGroupTest extends TestCase |
||
12 | { |
||
13 | private $group; |
||
14 | |||
15 | protected function setUp(): void |
||
16 | { |
||
17 | $this->group = new Group(Uuid::getFactory()->uuid4(), new Label('Test'), new \DateTime); |
||
18 | } |
||
19 | |||
20 | public function testGroupProperty(): void |
||
21 | { |
||
22 | $this->assertSame((new SetGroup($this->group))->getGroup(), $this->group); |
||
23 | } |
||
24 | |||
25 | public function testTypeIdProperty(): void |
||
26 | { |
||
27 | $this->assertSame((new SetGroup($this->group))->getTypeId(), SetGroup::MESSAGE_TYPE_ID); |
||
28 | } |
||
29 | |||
30 | public function testWireSizeProperty(): void |
||
33 | } |
||
34 | } |
||
35 |