Package org.apache.gora.shims.hadoop

Examples of org.apache.gora.shims.hadoop.HadoopShim


public class TestHadoopShim1 {

    @Test
    public void testCorrectVersion() {
        HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();

        assertSame(shim.getClass(), HadoopShim1.class);
    }
View Full Code Here


public class TestHadoopShim2 {

    @Test
    public void testCorrectVersion() {
        HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();

        assertSame(shim.getClass(), HadoopShim2.class);
    }
View Full Code Here

TOP

Related Classes of org.apache.gora.shims.hadoop.HadoopShim

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.