public function testInsertAtTop()
 {
     $t = new Table11();
     $t->setTitle('new');
     $t->insertAtTop();
     $this->assertEquals(1, $t->getRank(), 'insertAtTop() sets the position to 1');
     $this->assertTrue($t->isNew(), 'insertAtTop() doesn\'t save the object');
     $t->save();
     $expected = array(1 => 'new', 2 => 'row1', 3 => 'row2', 4 => 'row3', 5 => 'row4');
     $this->assertEquals($expected, $this->getFixturesArray(), 'insertAtTop() shifts the entire suite');
 }