diff --git a/app/tests/Domain/Repository/UserRepositoryTest.php b/app/tests/Domain/Repository/UserRepositoryTest.php index fbf55f3..b44d6d8 100644 --- a/app/tests/Domain/Repository/UserRepositoryTest.php +++ b/app/tests/Domain/Repository/UserRepositoryTest.php @@ -34,6 +34,10 @@ class UserRepositoryTest extends TestCase $results = $userRepository->create($user); $this->assertTrue($results); + /** + * We are testing if the User entity has been mutated by the `create` + * method in the UserRepository. + */ $this->assertEquals(100, $user->getId()); } }