@@ -100,8 +100,6 @@ public async Task SysbenchClientExecutorRunsTheExpectedWorkloadCommand()
100
100
commandExecuted = true ;
101
101
}
102
102
103
- Assert . IsTrue ( commandExecuted ) ;
104
-
105
103
InMemoryProcess process = new InMemoryProcess
106
104
{
107
105
StartInfo = new ProcessStartInfo
@@ -124,6 +122,8 @@ public async Task SysbenchClientExecutorRunsTheExpectedWorkloadCommand()
124
122
{
125
123
await SysbenchExecutor . ExecuteAsync ( CancellationToken . None ) ;
126
124
}
125
+
126
+ Assert . IsTrue ( commandExecuted ) ;
127
127
}
128
128
129
129
[ Test ]
@@ -146,8 +146,6 @@ public async Task SysbenchClientExecutorUsesDefinedParametersWhenRunningTheWorkl
146
146
commandExecuted = true ;
147
147
}
148
148
149
- Assert . IsTrue ( commandExecuted ) ;
150
-
151
149
InMemoryProcess process = new InMemoryProcess
152
150
{
153
151
StartInfo = new ProcessStartInfo
@@ -170,6 +168,8 @@ public async Task SysbenchClientExecutorUsesDefinedParametersWhenRunningTheWorkl
170
168
{
171
169
await SysbenchExecutor . ExecuteAsync ( CancellationToken . None ) ;
172
170
}
171
+
172
+ Assert . IsTrue ( commandExecuted ) ;
173
173
}
174
174
175
175
[ Test ]
@@ -189,8 +189,6 @@ public async Task SysbenchClientExecutorRunsTheExpectedBalancedScenario()
189
189
commandExecuted = true ;
190
190
}
191
191
192
- Assert . IsTrue ( commandExecuted ) ;
193
-
194
192
InMemoryProcess process = new InMemoryProcess
195
193
{
196
194
StartInfo = new ProcessStartInfo
@@ -213,6 +211,8 @@ public async Task SysbenchClientExecutorRunsTheExpectedBalancedScenario()
213
211
{
214
212
await SysbenchExecutor . ExecuteAsync ( CancellationToken . None ) ;
215
213
}
214
+
215
+ Assert . IsTrue ( commandExecuted ) ;
216
216
}
217
217
218
218
[ Test ]
@@ -232,8 +232,6 @@ public async Task SysbenchClientExecutorRunsInMemoryScenario()
232
232
commandExecuted = true ;
233
233
}
234
234
235
- Assert . IsTrue ( commandExecuted ) ;
236
-
237
235
InMemoryProcess process = new InMemoryProcess
238
236
{
239
237
StartInfo = new ProcessStartInfo
@@ -256,6 +254,8 @@ public async Task SysbenchClientExecutorRunsInMemoryScenario()
256
254
{
257
255
await SysbenchExecutor . ExecuteAsync ( CancellationToken . None ) . ConfigureAwait ( false ) ;
258
256
}
257
+
258
+ Assert . IsTrue ( commandExecuted ) ;
259
259
}
260
260
261
261
[ Test ]
@@ -275,8 +275,6 @@ public async Task SysbenchClientExecutorRunsTheExpectedTPCCWorkloadCommand()
275
275
commandExecuted = true ;
276
276
}
277
277
278
- Assert . IsTrue ( commandExecuted ) ;
279
-
280
278
InMemoryProcess process = new InMemoryProcess
281
279
{
282
280
StartInfo = new ProcessStartInfo
@@ -299,6 +297,8 @@ public async Task SysbenchClientExecutorRunsTheExpectedTPCCWorkloadCommand()
299
297
{
300
298
await SysbenchExecutor . ExecuteAsync ( CancellationToken . None ) ;
301
299
}
300
+
301
+ Assert . IsTrue ( commandExecuted ) ;
302
302
}
303
303
304
304
[ Test ]
0 commit comments