refactored invoice and export screens (#1046)

This commit is contained in:
Kevin Papst
2019-08-22 18:56:21 +02:00
committed by GitHub
parent 405ea0076b
commit 46e5650882
55 changed files with 930 additions and 906 deletions

View File

@@ -37,6 +37,15 @@ class ExportQueryTest extends BaseQueryTest
$this->assertState($sut);
$this->assertExported($sut);
$this->assertType($sut);
$this->assertMarkAsExported($sut);
}
protected function assertMarkAsExported(ExportQuery $sut)
{
$this->assertFalse($sut->isMarkAsExported());
$sut->setMarkAsExported(true);
$this->assertTrue($sut->isMarkAsExported());
}
protected function assertUser(ExportQuery $sut)