Verify saving and retrieving an entity using @DataJpaTest
Preconditions (3)
Step 1: Create a new User object with name 'Alice'
Step 2: Save the User object using UserRepository
Step 3: Retrieve the User by its id using UserRepository
Step 4: Verify the retrieved User is not null
Step 5: Verify the retrieved User's name is 'Alice'
✅ Expected Result: The User entity is saved and retrieved correctly with the name 'Alice'