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 3
3
[ ![ 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 )
4
4
[ ![ Javadoc] ( https://javadoc-emblem.rhcloud.com/doc/io.appium/java-client/badge.svg )] ( http://www.javadoc.io/doc/io.appium/java-client )
5
5
[ ![ 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 )
6
7
7
8
This 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 )
8
9
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ public class UIAutomator2Test {
27
27
service .start ();
28
28
29
29
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!" );
32
32
}
33
33
34
34
File appDir = new File ("src/test/java/io/appium/java_client" );
You can’t perform that action at this time.
0 commit comments