Тест junit с SerenityParameterizedRunner в аннотации RunWith: не находит тесты (java.lang.Exception: не найдено ни одного теста, соответствующего методу) - PullRequest
0 голосов
/ 15 февраля 2019

Я пытаюсь запустить тест junit с платформой Serenity BDD, используя IntelliJ IDEA.

При попытке запустить тест появляется ошибка:

java.lang.Exception: No tests found matching Method ... from org.junit.internal.requests.ClassRequest@71e693fa

Появляетсяиз-за использования аннотации RunWith, вызывающей SerenityParameterizedRunner

@RunWith(SerenityParameterizedRunner.class)

Когда аннотация RunWith закомментирована, тест найден и начинает выполняться (хотя это не очень полезно, так как мы полагаемся на Параметризованныйбегун для построения данных).

Я могу воспроизвести проблему с помощью простого проекта, чтобы продемонстрировать проблему.

package com.home;

public class Doorbell {
    private int ringCount = 0;

    public Doorbell() {

    }

    public void ring(){
        System.out.println("Ring!");
        ringCount++;
    }

    public int getRings() {
        return ringCount;
    }
}

Тестовый класс:

package com.home;

import net.serenitybdd.junit.runners.SerenityParameterizedRunner;
import net.serenitybdd.junit.runners.SerenityRunner;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(SerenityParameterizedRunner.class)
public class DoorbellTest {

    @Test
    public void testRings()
    {
        Doorbell db = new Doorbell();
        db.ring();
        db.ring();

        Assert.assertEquals(2,db.getRings());
    }
}

Pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>homeproject</groupId>
    <artifactId>mytestproject</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <serenity.version>1.9.31</serenity.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/net.serenity-bdd/serenity-core -->
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-core</artifactId>
            <version>1.9.31</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/net.serenity-bdd/serenity-junit -->
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-junit</artifactId>
            <version>1.9.31</version>
        </dependency>
    </dependencies>
</project>

Plesae попробуйте запустить одиночный модульный тест в проекте.Любая помощь высоко ценится.

1 Ответ

0 голосов
/ 16 февраля 2019

Ответ 11 из этого вопроса переполнения стека решил мою проблему

Очевидно, вам нужно запустить класс, содержащий тест, а не сам тест.

...