File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
src/test/java/io/appium/java_client/android Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ language : java
2+
3+ jdk :
4+ - oraclejdk8
5+
6+ before_cache :
7+ - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
8+ - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
9+ cache :
10+ directories :
11+ - $HOME/.gradle/caches/
12+ - $HOME/.gradle/wrapper/
13+
14+ script :
15+ - ./gradlew clean build -x test
Original file line number Diff line number Diff line change 33[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/io.appium/java-client/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/io.appium/java-client )
44[ ![ Javadoc] ( https://javadoc-emblem.rhcloud.com/doc/io.appium/java-client/badge.svg )] ( http://www.javadoc.io/doc/io.appium/java-client )
55[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/f365c5e9458b42bf8a5b1d928d7e4f48 )] ( https://www.codacy.com/app/appium/java-client )
6+ [ ![ Build Status] ( https://travis-ci.org/appium/java-client.svg?branch=master )] ( https://travis-ci.org/appium/java-client )
67
78This is the Java language binding for writing Appium Tests, conforms to [ Mobile JSON Wire Protocol] ( https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md )
89
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ public class UIAutomator2Test {
2727 service .start ();
2828
2929 if (service == null || !service .isRunning ()) {
30- throw new AppiumServerHasNotBeenStartedLocallyException
31- ( "An appium server node is not started!" );
30+ throw new AppiumServerHasNotBeenStartedLocallyException (
31+ "An appium server node is not started!" );
3232 }
3333
3434 File appDir = new File ("src/test/java/io/appium/java_client" );
You can’t perform that action at this time.
0 commit comments