Как интегрировать огурец в тестовый проект Android-Maven?

Я хотел бы интегрировать cucumber в проект тестирования Android, который использует maven в качестве системы сборки. Тест-проект отделен от основного проекта и содержит только функциональные тесты на основе роботия. Я следовал этому руководству и приведенным здесь примерам, но на этапе тестирования я получил: 0 тестов найдено. Есть идеи? Заранее спасибо.

1 ответ

Решение

Эрик. Я не рекомендую эти ссылки, но, пожалуйста, имейте в виду, что для компиляции области видимости необходимо использовать все зависимости от огурцов. Используйте Junit4, который даст duplicationDependency, но используйте эту команду для сборки:

build command:    mvn clean install  -Dandroid.extractDuplicates=true

часть pom.xml

<dependency>
 <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>compile</scope>
    </dependency>

    <!-- cucumber -->
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-core</artifactId>
        <version>1.2.0</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-android</artifactId>
        <version>1.2.0</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-html</artifactId>
        <version>0.2.3</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>1.2.0</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.2.0</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-jvm-deps</artifactId>
        <version>1.0.3</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>gherkin</artifactId>
        <version>2.12.2</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-picocontainer</artifactId>
        <version>1.1.5</version>
        <scope>compile</scope>
    </dependency>
</dependencies>

часть содержимого AndroidManifest.xml (идентификатор приложения, который вы хотите протестировать com.myproject.android):

   <instrumentation
        android:name="cucumber.api.android.CucumberInstrumentation"
        android:targetPackage="com.myproject.android" />
Другие вопросы по тегам