| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class MessageFactoryTest extends TestCase |
||
| 11 | { |
||
| 12 | /** @var MessageFactory - System Under Test */ |
||
| 13 | protected MessageFactory $sut; |
||
| 14 | |||
| 15 | public function setUp(): void |
||
| 16 | { |
||
| 17 | parent::setUp(); |
||
| 18 | |||
| 19 | $this->sut = new MessageFactory(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function testCreate(): void |
||
| 29 | } |
||
| 30 | } |
||
| 31 |