We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa0c9dd commit 944fc57Copy full SHA for 944fc57
src/test/mod.rs
@@ -172,6 +172,11 @@ fn system_tests() {
172
// Display results.
173
println!("Ran {} system tests.", count);
174
assert_eq!(fails, 0, "{} system tests failed", fails);
175
+ assert!(
176
+ count >= 300,
177
+ "Expected a minimum of {} system tests to be executed",
178
+ 300
179
+ )
180
});
181
}
182
@@ -292,6 +297,11 @@ fn idempotence_tests() {
292
297
293
298
println!("Ran {} idempotent tests.", count);
294
299
assert_eq!(fails, 0, "{} idempotent tests failed", fails);
300
301
+ count >= 400,
302
+ "Expected a minimum of {} idempotent tests to be executed",
303
+ 400
304
295
305
296
306
307
0 commit comments