guillermoandrae /
php-debug
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Test\Common; |
||
| 4 | |||
| 5 | use Guillermoandrae\Common\DumpableTrait; |
||
| 6 | use PHPUnit\Framework\TestCase; |
||
| 7 | |||
| 8 | class DumpableTraitTest extends TestCase |
||
| 9 | { |
||
| 10 | public function testDump() |
||
| 11 | { |
||
| 12 | $dumpable = $this->getMockForTrait(DumpableTrait::class); |
||
| 13 | $this->assertSame(var_dump($dumpable), $dumpable->dump()); |
||
|
1 ignored issue
–
show
Security
Debugging Code
introduced
by
Loading history...
|
|||
| 14 | } |
||
| 15 | } |
||
| 16 |