Skip to content

Commit 5b129f0

Browse files
committed
Merge
2 parents 20114f7 + 5e47a09 commit 5b129f0

File tree

32 files changed

+1326
-330
lines changed

32 files changed

+1326
-330
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
distrib/
1313
target/
1414
tmp/
15+
gen-external-apklibs/
16+
out/
1517

1618
# Build & test droppings
1719
report.js

History.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
* [Jython] Fix for DataTable as parameter in Jython steps ([#602](https://github.com/cucumber/cucumber-jvm/pull/602) lggroapa, Aslak Hellesøy)
44
* [Core] Fix and improve CamelCaseFunctionNameSanitizer ([#603](https://github.com/cucumber/cucumber-jvm/pull/603) Frieder Bluemle)
5+
* [Android] improve test reports for cucumber-android ([#598](https://github.com/cucumber/cucumber-jvm/pull/598) Sebastian Gröbler)
6+
* [Core] The JSONFormatter should record before hooks in the next scenario ([#570](https://github.com/cucumber/cucumber-jvm/pull/570) Björn Rasmusson)
57
* [Core, Java] Log a warning when more than one IoC dependency is found in the classpath ([#594](https://github.com/cucumber/cucumber-jvm/pull/594) Ariel Kogan)
68
* [JUnit,TestNG] Report summaries and `.cucumber/stepdefs.json` in the same way as the CLI (Aslak Hellesøy)
79

android/pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,27 @@
2929
<artifactId>cucumber-java</artifactId>
3030
<scope>provided</scope>
3131
</dependency>
32+
<dependency>
33+
<groupId>org.mockito</groupId>
34+
<artifactId>mockito-core</artifactId>
35+
<version>1.9.5</version>
36+
<scope>test</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.hamcrest</groupId>
40+
<artifactId>hamcrest-core</artifactId>
41+
<version>1.3</version>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.robolectric</groupId>
46+
<artifactId>robolectric</artifactId>
47+
<version>2.1.1</version>
48+
<scope>test</scope>
49+
</dependency>
3250
</dependencies>
3351

3452
<build>
35-
<sourceDirectory>src</sourceDirectory>
3653
<pluginManagement>
3754
<plugins>
3855
<plugin>

android/src/cucumber/api/android/CucumberInstrumentation.java

Lines changed: 0 additions & 294 deletions
This file was deleted.

0 commit comments

Comments
 (0)