Microservices - Migration from Monolith
Analyze the following pseudocode:
What will be printed if all tests pass successfully?
services = ['user', 'inventory', 'billing']
migrated = []
for service in services:
migrate(service)
if test(service):
migrated.append(service)
print(migrated)What will be printed if all tests pass successfully?
