Verify UserService calls UserRepository save method
Preconditions (2)
Step 1: Create a User object with name 'Alice' and email 'alice@example.com'
Step 2: Call UserService.createUser with the User object
Step 3: Verify that UserRepository.save was called once with the same User object
✅ Expected Result: UserRepository.save method is called exactly once with the User object passed to UserService.createUser