Complete the code to define the environment used for testing microservices.
environment = "[1]"
The testing environment is specifically used to run tests on microservices before deployment.
Complete the code to select the appropriate data type for test data isolation in microservices.
test_data_type = "[1]"
Isolated test data ensures tests do not affect each other or production data.
Fix the error in the test environment setup code to correctly configure the database URL.
db_url = "jdbc:mysql://[1]:3306/testdb"
The test environment should connect to the test-db-server to avoid affecting production data.
Fill both blanks to create a test data setup that resets and seeds the database before tests.
def setup_test_data(): [1]() [2]()
First, reset_database() clears old data, then seed_database() adds fresh test data.
Fill all three blanks to configure environment variables for test microservice deployment.
config = {
"ENV": "[1]",
"DB_HOST": "[2]",
"LOG_LEVEL": "[3]"
}The environment is set to testing, database host to test-db-server, and log level to DEBUG for detailed test logs.