@@ -49,7 +49,7 @@ initialData:
4949 documents : [ { _id: 0 } ]
5050
5151tests :
52- - description : executes a ping with $db attached
52+ - description : always attaches $db to given command
5353 operations :
5454 - name : runCommand
5555 object : plainDb
6868 $db : plainDb
6969 commandName : ping
7070
71- - description : executes a ping with lsid attached
71+ - description : attaches the provided session lsid to ping command
7272 operations :
7373 - name : runCommand
7474 object : plainDb
8989 $db : plainDb
9090 commandName : ping
9191
92- - description : executes a ping with $readPreference attached
92+ - description : attaches the provided $readPreference to given command
9393 operations :
9494 - name : runCommand
9595 object : plainDb
@@ -110,7 +110,7 @@ tests:
110110 $db : plainDb
111111 commandName : ping
112112
113- - description : executes a ping without attaching readConcern
113+ - description : does not inherit readConcern specified at the db level
114114 operations :
115115 - name : runCommand
116116 object : dbWithRC
@@ -130,7 +130,7 @@ tests:
130130 $db : dbWithRC
131131 commandName : ping
132132
133- - description : executes a ping without attaching writeConcern
133+ - description : does not inherit writeConcern specified at the db level
134134 operations :
135135 - name : runCommand
136136 object : dbWithWC
@@ -150,7 +150,7 @@ tests:
150150 $db : dbWithWC
151151 commandName : ping
152152
153- - description : executes a ping and does not retry retryable error
153+ - description : does not retry retryable errors on given command
154154 operations :
155155 - name : failPoint
156156 object : testRunner
@@ -171,7 +171,7 @@ tests:
171171 expectError :
172172 isError : true
173173
174- - description : executes a insert via runCommand inside a transaction
174+ - description : attaches transaction fields to given command
175175 runOnRequirements :
176176 - topologies : [ replicaset, sharded-replicaset, load-balanced, sharded ]
177177 minServerVersion : ' 4.4'
@@ -219,7 +219,7 @@ tests:
219219 commandName : commitTransaction
220220 databaseName : admin
221221
222- - description : executes a ping with stableApi fields attached
222+ - description : attaches apiVersion fields to given command when stableApi is configured on the client
223223 operations :
224224 - name : runCommand
225225 object : stableApiDb
0 commit comments