getEntityManagerMock(3); $sut = new InvoiceLoader($em); $entity = $this->createMock(Invoice::class); $entity->expects($this->once())->method('getId')->willReturn(1); $sut->loadResults([$entity]); } }