Pheasant\Tests\TableTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $this->table = $this->table('user', array('userid' => new Types\IntegerType(8, 'primary auto_increment'), 'firstname' => new Types\StringType(), 'lastname' => new Types\StringType()));
        $this->assertRowCount(0, 'select * from user');
    }