public function DebugTest::testExportDateTime in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Util/DebugTest.php \Doctrine\Tests\Common\Util\DebugTest::testExportDateTime()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Util/ DebugTest.php, line 20
Class
Namespace
Doctrine\Tests\Common\UtilCode
public function testExportDateTime() {
$obj = new \DateTime("2010-10-10 10:10:10");
$var = Debug::export($obj, 2);
$this
->assertEquals("DateTime", $var->__CLASS__);
}