Package org.apache.ambari.view.pig.persistence

Examples of org.apache.ambari.view.pig.persistence.Storage


    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(handler, context);

    Storage storage = StorageUtil.getStorage(context);
    Assert.assertEquals(InstanceKeyValueStorage.class.getSimpleName(), storage.getClass().getSimpleName());
  }
View Full Code Here


    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(handler, context);

    Storage storage = StorageUtil.getStorage(context);
    Assert.assertEquals(InstanceKeyValueStorage.class.getSimpleName(), storage.getClass().getSimpleName());
  }
View Full Code Here

TOP

Related Classes of org.apache.ambari.view.pig.persistence.Storage

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.