refactored repositories and DB queries (#5026)
* removed unused teams from export order * added new paginator for query instead of querybuilder * added field hydrate enums * hide PARTIAL deprecation * never log deprecations in production * replaced InvoiceLoader with native Doctrine feature * prevent excessive permission queries * support loading customers of team * improved findByIds * internalized API * fix null string deprecations
This commit is contained in:
@@ -25,13 +25,13 @@ class ProjectLoaderTest extends AbstractLoaderTest
|
||||
|
||||
$entity = $this->createMock(Project::class);
|
||||
$entity->expects($this->once())->method('getId')->willReturn(1);
|
||||
$entity->expects($this->once())->method('getCustomer')->willReturn($customer);
|
||||
$entity->expects($this->exactly(2))->method('getCustomer')->willReturn($customer);
|
||||
|
||||
$results = [$entity];
|
||||
|
||||
$em = $this->getEntityManagerMock(4, $results);
|
||||
$em = $this->getEntityManagerMock(2, $results);
|
||||
|
||||
$sut = new ProjectLoader($em);
|
||||
$sut->loadResults([$entity, 4711]);
|
||||
$sut->loadResults([$entity]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user