Skip to content

Commit

Permalink
[GSCOLLECT-1575] Create JMH tests for Map.put()
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://gscollections.svn.services.gs.com/svnroot/gscollections-svn/trunk@830 d5c9223b-1aff-41ac-aadd-f810b4a99ac4
  • Loading branch information
nikhilnanivadekar committed Mar 3, 2015
1 parent dda7c18 commit 3c7e1e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class ChainMapPutTest
@Setup
public void setUp()
{
Random random = new Random(12345L);
Random random = new Random(123456789012345L);

this.elements = new String[this.size];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class KolobokeMapPutTest
@Setup
public void setUp()
{
Random random = new Random(12345L);
Random random = new Random(123456789012345L);

this.elements = new String[this.size];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class TroveMapPutTest
@Setup
public void setUp()
{
Random random = new Random(12345L);
Random random = new Random(123456789012345L);

this.elements = new String[this.size];

Expand Down

0 comments on commit 3c7e1e5

Please sign in to comment.