Skip to content

Commit

Permalink
[FLINK-6395] [tests] Mark test bases as abstract
Browse files Browse the repository at this point in the history
This closes apache#3790
  • Loading branch information
zentol authored and greghogan committed Apr 28, 2017
1 parent 9614b3e commit 7a136ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -55,7 +55,7 @@
import java.util.List;

@RunWith(Parameterized.class)
public class BinaryOperatorTestBase<S extends Function, IN, OUT> extends TestLogger implements TaskContext<S, OUT> {
public abstract class BinaryOperatorTestBase<S extends Function, IN, OUT> extends TestLogger implements TaskContext<S, OUT> {

protected static final int PAGE_SIZE = 32 * 1024;

Expand Down
Expand Up @@ -54,7 +54,7 @@
import java.util.List;

@RunWith(Parameterized.class)
public class DriverTestBase<S extends Function> extends TestLogger implements TaskContext<S, Record> {
public abstract class DriverTestBase<S extends Function> extends TestLogger implements TaskContext<S, Record> {

protected static final long DEFAULT_PER_SORT_MEM = 16 * 1024 * 1024;

Expand Down
Expand Up @@ -53,7 +53,7 @@
import java.util.List;

@RunWith(Parameterized.class)
public class UnaryOperatorTestBase<S extends Function, IN, OUT> extends TestLogger implements TaskContext<S, OUT> {
public abstract class UnaryOperatorTestBase<S extends Function, IN, OUT> extends TestLogger implements TaskContext<S, OUT> {

protected static final long DEFAULT_PER_SORT_MEM = 16 * 1024 * 1024;

Expand Down

0 comments on commit 7a136ca

Please sign in to comment.