Example usage for org.apache.hadoop.mapred HadoopTestCase subclass-usage

List of usage examples for org.apache.hadoop.mapred HadoopTestCase subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred HadoopTestCase subclass-usage.

Usage

From source file io.vitess.hadoop.MapReduceIT.java

/**
 * Integration tests for MapReductions in Vitess. These tests use an in-process Hadoop cluster via
 * {@link HadoopTestCase}. These tests are JUnit3 style because of this dependency. Vitess setup for
 * these tests require at least one rdonly instance per shard.
 */
public class MapReduceIT extends HadoopTestCase {

From source file org.apache.gora.mapreduce.DataStoreMapReduceTestBase.java

/**
 * Base class for Mapreduce based tests. This is just a convenience
 * class, which actually only uses {@link MapReduceTestUtils} methods to
 * run the tests.
 */
public abstract class DataStoreMapReduceTestBase extends HadoopTestCase {

From source file org.apache.hadoop.examples.terasort.TestTeraSort.java

public class TestTeraSort extends HadoopTestCase {
    private static final Logger LOG = LoggerFactory.getLogger(TestTeraSort.class);

    public TestTeraSort() throws IOException {
        super(LOCAL_MR, LOCAL_FS, 1, 1);
    }

From source file org.apache.tez.mapreduce.examples.terasort.TestTeraSort.java

@Ignore
public class TestTeraSort extends HadoopTestCase {

    public TestTeraSort() throws IOException {
        super(CLUSTER_MR, DFS_FS, 1, 1);
    }

From source file seoeun.hadoop.multipleoutputs.TestMRMultipleOutputs.java

public class TestMRMultipleOutputs extends HadoopTestCase {

    public TestMRMultipleOutputs() throws IOException {
        super(HadoopTestCase.LOCAL_MR, HadoopTestCase.LOCAL_FS, 1, 1);
    }