* added a isCli function
[vsc.git] / _tests / models / fooEntityATest.php
blob980f746a82a5ade168564dfe95c72f62e854c225
1 <?php
2 /**
3 * @package ts_tests
4 * @subpackage models
5 * @author Marius Orcsik <marius@habarnam.ro>
6 */
7 include_once ('dummytable.class.php');
9 class fooUsersTest extends UnitTestCase {
10 public function setUp() {
11 // begin transaction shit - if the case
14 // private function getTestData () {
15 // return array (
16 // array ('One', 'Two', 3),
17 // array (null, 0, 1)
18 // );
19 // }
21 public function testInstantiation (){
22 $ousers = new dummyTable();
24 $this->assertIsA($ousers, 'dummyTable');
27 public function testFields () {