the whole shebang
This commit is contained in:
40
vendor/doctrine/common/tests/Doctrine/Tests/Common/Util/DebugTest.php
vendored
Normal file
40
vendor/doctrine/common/tests/Doctrine/Tests/Common/Util/DebugTest.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\Tests\Common\Util;
|
||||
|
||||
use Doctrine\Tests\DoctrineTestCase;
|
||||
use Doctrine\Common\Util\Debug;
|
||||
|
||||
class DebugTest extends DoctrineTestCase
|
||||
{
|
||||
public function testExportObject( )
|
||||
{
|
||||
$obj = new \stdClass;
|
||||
$obj->foo = "bar";
|
||||
$obj->bar = 1234;
|
||||
|
||||
$var = Debug::export($obj, 2);
|
||||
$this->assertEquals( "stdClass", $var->__CLASS__ );
|
||||
}
|
||||
|
||||
public function testExportDateTime()
|
||||
{
|
||||
$obj = new \DateTime( "2010-10-10 10:10:10" );
|
||||
|
||||
$var = Debug::export( $obj, 2 );
|
||||
$this->assertEquals( "DateTime", $var->__CLASS__ );
|
||||
}
|
||||
|
||||
public function testExportArrayTraversable()
|
||||
{
|
||||
$obj = new \ArrayObject(array('foobar'));
|
||||
|
||||
$var = Debug::export($obj, 2);
|
||||
$this->assertContains('foobar', $var->__STORAGE__);
|
||||
|
||||
$it = new \ArrayIterator(array('foobar'));
|
||||
|
||||
$var = Debug::export($it, 5);
|
||||
$this->assertContains('foobar', $var->__STORAGE__);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user