Explorar el Código

Add many partition many clients test.

Jing Yang hace 4 años
padre
commit
3a8a932f19
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      kvraft/tests/service_test.rs

+ 9 - 0
kvraft/tests/service_test.rs

@@ -337,3 +337,12 @@ fn many_partitions_one_client() {
         ..Default::default()
     });
 }
+
+#[test]
+fn many_partitions_many_client() {
+    generic_test(GenericTestParams {
+        clients: 5,
+        partition: true,
+        ..Default::default()
+    });
+}