public function testGetRowFieldIndexes()
 {
     $expected = array(0);
     $pivotAction = new PivotAction($this->pivotDescription);
     $actual = $pivotAction->getRowFieldIndexes();
     $this->assertEquals($expected, $actual, "Failed to extract row field indexes");
 }