Code Duplication    Length = 8-8 lines in 2 locations

tests/KintTest.php 2 locations

@@ 257-264 (lines=8) @@
254
     * @covers \Kint\Kint::dumpAll
255
     * @expectedException \InvalidArgumentException
256
     */
257
    public function testDumpAllUnmatchingArgs()
258
    {
259
        $p = new Parser();
260
        $r = new TextRenderer();
261
        $k = new Kint($p, $r);
262
263
        $k->dumpAll(array($k), array(BasicObject::blank(), 'bar' => 'baz'));
264
    }
265
266
    /**
267
     * @covers \Kint\Kint::dumpAll
@@ 270-277 (lines=8) @@
267
     * @covers \Kint\Kint::dumpAll
268
     * @expectedException \InvalidArgumentException
269
     */
270
    public function testDumpAllIncorrectBase()
271
    {
272
        $p = new Parser();
273
        $r = new TextRenderer();
274
        $k = new Kint($p, $r);
275
276
        $k->dumpAll(array($k), array('foo'));
277
    }
278
279
    /**
280
     * @covers \Kint\Kint::dumpVar