Failed Conditions
Push — master ( 2cff37...0099f4 )
by Guillermo A.
01:58
created

tests/Common/DumpableTraitTest.php (1 issue)

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
var_dump($dumpable) looks like debug code. Are you sure you do not want to remove it?
Loading history...
14
    }
15
}
16