Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function testGetterOfDto(): void |
||
21 | { |
||
22 | $dto = new LocaleValueObject('test'); |
||
23 | |||
24 | self::assertEquals('test', $dto->getLocale()); |
||
25 | self::assertEquals('test', (string)$dto); |
||
26 | |||
27 | $dto->setLocale('new'); |
||
28 | |||
29 | self::assertEquals('new', $dto->getLocale()); |
||
30 | self::assertEquals('new', (string)$dto); |
||
31 | } |
||
33 |