1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/Export/ReporterTestCase.php
2007-01-05 22:07:50 +00:00

17 lines
553 B
PHP

<?php
class BadLyNamed__Class extends Doctrine_Record {
public function setTableDefinition() {
}
public function setUp() { }
}
class Doctrine_Export_Reporter_TestCase extends Doctrine_UnitTestCase {
public function testExportChecksClassNaming() {
$reporter = $this->export->export('BadLyNamed__Class');
// Class name is not valid. Double underscores are not allowed
$this->assertEqual($reporter->pop(), array(E_WARNING, 'Badly named class.'));
}
}