public function testGetDataFieldIndexes()
 {
     $expected = array(3, 4);
     $pivotAction = new PivotAction($this->pivotDescription);
     $actual = $pivotAction->getDataFieldIndexes();
     $this->assertEquals($expected, $actual, "Failed to extract data field indexes");
 }