Package com.sun.sgs.test.impl.service.data.store

Examples of com.sun.sgs.test.impl.service.data.store.BasicDataStoreTestEnv


    public TestCachingDataStore() {
  super(staticEnv == null ? staticEnv = createTestEnv() : staticEnv);
    }

    private static BasicDataStoreTestEnv createTestEnv() {
  BasicDataStoreTestEnv env = new BasicDataStoreTestEnv(
      System.getProperties(),
      LockingAccessCoordinator.class.getName());
  env.txnProxy.setComponent(
      DataService.class, new DummyDataService());
  env.txnProxy.setComponent(
View Full Code Here


    private static BasicDataStoreTestEnv staticEnv = null;

    /** Creates an instance of this class. */
    public TestCachingDataStorePerformance() {
  super(staticEnv == null
        ? staticEnv = new BasicDataStoreTestEnv(
      System.getProperties(),
      LockingAccessCoordinator.class.getName())
        : staticEnv);
    }
View Full Code Here

TOP

Related Classes of com.sun.sgs.test.impl.service.data.store.BasicDataStoreTestEnv

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.