Skip to content

Commit 7bf5074

Browse files
committed
* fixed several bugs in the AndroidTestReporter formerly known as AndroidReporter
* restructured project to be more maven compliant * added dependencies for testing purposes
1 parent 35d3318 commit 7bf5074

14 files changed

+1198
-312
lines changed

android/pom.xml

+18-1
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

-294
This file was deleted.

0 commit comments

Comments
 (0)