pickles/tests/classes/ModelTest.php
2014-01-12 22:06:34 -05:00

15 lines
230 B
PHP

<?php
class ModelTest extends PHPUnit_Framework_TestCase
{
/**
* @expectedException Exception
* @expectedExceptionMessage You must set the table variable
*/
public function testNoTable()
{
new Model();
}
}
?>