Configurable activity and project number (#4729)
* added configurable activity number * added configurable project number * fix deprecations * added some tests for entity exporter * better configuration of dropdown pattern for customer, project and activity
This commit is contained in:
@@ -40,7 +40,7 @@ abstract class AbstractFormatterTest extends TestCase
|
||||
$worksheet = $spreadsheet->getActiveSheet();
|
||||
|
||||
$sut->setFormattedValue($worksheet, 1, 1, $this->getActualValue());
|
||||
$cell = $worksheet->getCellByColumnAndRow(1, 1);
|
||||
$cell = $worksheet->getCell([1, 1]);
|
||||
$this->assertCellValue($cell);
|
||||
$this->assertCellStyle($worksheet->getStyleByColumnAndRow(1, 1));
|
||||
}
|
||||
@@ -53,7 +53,7 @@ abstract class AbstractFormatterTest extends TestCase
|
||||
$worksheet = $spreadsheet->getActiveSheet();
|
||||
|
||||
$sut->setFormattedValue($worksheet, 1, 1, null);
|
||||
$cell = $worksheet->getCellByColumnAndRow(1, 1);
|
||||
$cell = $worksheet->getCell([1, 1]);
|
||||
$this->assertNullValue($cell);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user