Skip to content

Commit

Permalink
Removing one test because testing the RNG is not part of the scope of…
Browse files Browse the repository at this point in the history
… this test - and we cannot assure that the RNG will initialize the default seed to different values.
  • Loading branch information
cogmission committed Jan 26, 2015
1 parent a0b2077 commit 1c65e6a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,11 @@ public void testSeed() {
is(equalTo(e2)));
assertThat("Different seeds gives rise to same encodings", e1,
is(not(equalTo(e3))));
assertThat("seeds of -1 give rise to same encodings", e4,
is(not(equalTo(e3))));
//Removing this test because testing the RNG is not part of the scope of
//this test - and we cannot assure that the RNG will initialize the default
//seed to different values.
//assertThat("seeds of -1 give rise to same encodings", e4,
// is(not(equalTo(e3))));
}

@Test
Expand Down

0 comments on commit 1c65e6a

Please sign in to comment.