Optimized tests for AbstractEntity and UserSourceDirectoryService

This commit is contained in:
Kevin Frantz
2019-01-13 20:43:33 +01:00
parent 67e389d2fb
commit 2b63e0e447
2 changed files with 37 additions and 5 deletions

View File

@@ -39,9 +39,4 @@ class AbstractEntityTest extends TestCase
$this->assertNull($this->entity->setId($id));
$this->assertEquals($id, $this->entity->getId());
}
public function testToString(): void
{
$this->assertEquals(true, is_string($this->entity->__toString()));
}
}