Created
April 1, 2014 15:08
-
-
Save smiklosovic/9916094 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
@Deployment | |
@Instrumentable | |
public statit Archive<?> mobilePhoneDeployment() | |
{ | |
return some apk you want to test | |
} | |
@Deployment | |
@Targets("jboss") | |
// @Instrumentable does not make sense here | |
public static Archive<?> jbossASDeployment() | |
{ | |
return some war but you want to test it on mobile | |
// it will install android-driver.apk automatically under it | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment