Skip to content

Commit

Permalink
Reduce the thoroughness of mutation testing.
Browse files Browse the repository at this point in the history
It's very slow under Android.

RELNOTES=n/a
PiperOrigin-RevId: 623575236
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Apr 10, 2024
1 parent 616802a commit 1a583c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
@RunWith(JUnit4.class)

public final class NetworkMutationTest {
private static final int NUM_TRIALS = 25;
private static final int NUM_NODES = 100;
private static final int NUM_EDGES = 1000;
private static final int NUM_TRIALS = 5;
private static final int NUM_NODES = 20;
private static final int NUM_EDGES = 100;
private static final int NODE_POOL_SIZE = 1000; // must be >> NUM_NODES

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
@RunWith(JUnit4.class)

public final class NetworkMutationTest {
private static final int NUM_TRIALS = 25;
private static final int NUM_NODES = 100;
private static final int NUM_EDGES = 1000;
private static final int NUM_TRIALS = 5;
private static final int NUM_NODES = 20;
private static final int NUM_EDGES = 100;
private static final int NODE_POOL_SIZE = 1000; // must be >> NUM_NODES

@Test
Expand Down

0 comments on commit 1a583c3

Please sign in to comment.