Remove low-value service delegation tests

This commit is contained in:
2026-03-19 19:46:07 +01:00
parent 5c7a1148ac
commit c89501bbed
2 changed files with 0 additions and 50 deletions

View File

@@ -33,22 +33,6 @@ class TenantServiceTest extends TestCase
);
}
public function testListDelegatesToRepository(): void
{
$expected = [
['id' => 1, 'description' => 'Tenant A'],
['id' => 2, 'description' => 'Tenant B'],
];
$this->tenantRepository->expects($this->once())
->method('list')
->willReturn($expected);
$result = $this->service->list();
self::assertSame($expected, $result);
}
public function testCreateFromAdminSucceeds(): void
{
$input = $this->validInput();