bson/testdata/connection-monitoring-and-pooling/connection-must-have-id.json
2025-03-17 20:58:26 +01:00

53 lines
910 B
JSON

{
"version": 1,
"style": "unit",
"description": "must have an ID number associated with it",
"operations": [
{
"name": "ready"
},
{
"name": "checkOut"
},
{
"name": "checkOut"
}
],
"events": [
{
"type": "ConnectionCheckOutStarted",
"address": 42
},
{
"type": "ConnectionCreated",
"connectionId": 42,
"address": 42
},
{
"type": "ConnectionCheckedOut",
"connectionId": 42,
"address": 42
},
{
"type": "ConnectionCheckOutStarted",
"address": 42
},
{
"type": "ConnectionCreated",
"connectionId": 42,
"address": 42
},
{
"type": "ConnectionCheckedOut",
"connectionId": 42,
"address": 42
}
],
"ignore": [
"ConnectionPoolCreated",
"ConnectionPoolReady",
"ConnectionPoolClosed",
"ConnectionReady"
]
}