| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class ODMGeneratorTest extends TestCase |
||
| 21 | { |
||
| 22 | public function testODMGenerator(): void |
||
| 32 | |||
| 33 | public function testWithValueObjectStringable(): void |
||
| 34 | { |
||
| 35 | $generator = new ODMGenerator(); |
||
| 36 | |||
| 37 | $media = new Media(); |
||
| 38 | $media->setContext('user'); |
||
| 39 | |||
| 40 | // Dummy Value Object representing UUID |
||
| 41 | $vo = new class() { |
||
| 42 | public function __toString() |
||
| 51 | } |
||
| 52 |