Package com.google.appengine.tools.development.testing

Examples of com.google.appengine.tools.development.testing.LocalDatastoreServiceTestConfig


    private LocalDatastoreServiceTestConfig datastoreConfig;
    private LocalTaskQueueTestConfig taskQueueConfig;
   
    @Before
    public void setUp() throws Exception {
        datastoreConfig = new LocalDatastoreServiceTestConfig().setNoStorage(true);
        taskQueueConfig = new LocalTaskQueueTestConfig();
        helper = new LocalServiceTestHelper(datastoreConfig, taskQueueConfig) {
            @Override
            protected LocalServerEnvironment newLocalServerEnvironment() {
                final LocalServerEnvironment lse = super.newLocalServerEnvironment();
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.development.testing.LocalDatastoreServiceTestConfig

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.