improve exports, filters, aggregators

This commit is contained in:
2017-01-17 00:33:44 +01:00
parent d75783632f
commit 045119d61f
7 changed files with 249 additions and 10 deletions

View File

@@ -35,10 +35,6 @@ class ListPersonTest extends AbstractExportTest
*/
private $export;
protected $fields = array(
'id', 'firstName', 'lastName', 'birthdate',
'placeOfBirth', 'gender', 'memo', 'email', 'phonenumber'
);
public function setUp()
{
@@ -64,7 +60,9 @@ class ListPersonTest extends AbstractExportTest
return array(
array('fields' => ['id', 'firstName', 'lastName']),
array('fields' => ['id', 'birthdate', 'gender', 'memo', 'email', 'phonenumber']),
array('fields' => ['firstName', 'lastName', 'phonenumber'])
array('fields' => ['firstName', 'lastName', 'phonenumber']),
array('fields' => ['id', 'nationality']),
array('fields' => ['id', 'countryOfBirth'])
);
}