Skip to content

Commit

Permalink
Rename HistogramTest to make it clear to Maven that it is a template …
Browse files Browse the repository at this point in the history
…of tests not to be run directly.
  • Loading branch information
tdunning committed May 13, 2018
1 parent fb56e46 commit ac41e46
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 @@ -22,7 +22,7 @@

import java.io.FileNotFoundException;

public class FloatHistogramTest extends HistogramTest {
public class FloatHistogramTest extends HistogramTestCases {
@Before
public void setup() {
useLinearBuckets = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public class HistogramTest {
public class HistogramTestCases {
boolean useLinearBuckets;
HistogramFactory factory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public class LogHistogramTest extends HistogramTest {
public class LogHistogramTest extends HistogramTestCases {
@Before
public void setup() {
useLinearBuckets = false;
Expand Down

0 comments on commit ac41e46

Please sign in to comment.