Created
February 5, 2010 13:06
-
-
Save anonymous/295767 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GaedoPageTester extends PageTester { | |
private final static String APP_PACKAGE = "com.dooapp.ecomaison"; | |
private final static String APP_NAME = "App"; | |
public GaedoPageTester() { | |
super(APP_PACKAGE, APP_NAME); | |
ApiProxy.setEnvironmentForCurrentThread(new TestEnvironment()); | |
ApiProxy.setDelegate(new ApiProxyLocalImpl(new File(".")) { | |
}); | |
ApiProxyLocalImpl proxy = (ApiProxyLocalImpl) ApiProxy.getDelegate(); | |
proxy.setProperty(LocalDatastoreService.NO_STORAGE_PROPERTY, | |
Boolean.TRUE.toString()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment