IntelliJ не может обнаружить тесты Junit - PullRequest
0 голосов
/ 12 октября 2019

Привет! Я часами искал в интернете и много раз нашел этот вопрос, но никто из ответов мне не помог. Я пытаюсь запустить тесты Юпитера Junit5 в приложении весенней загрузки, однако получаю эту ошибку:

FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':test'.
> No tests found for given includes: [com.danielazheleva.blog.services.Impl.TripServiceImplTest](filter.includeTestsMatching)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s

Я использую IntelliJ 2019.2.3 Gradle 5.2.6 Groovy 2.5.8

Вот мой файл build.gradle

plugins {
    id 'org.springframework.boot' version '2.1.7.RELEASE'
    id 'io.spring.dependency-management' version '1.0.8.RELEASE'
    id 'java'
}

group = 'com.danielazheleva'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'

repositories {
    mavenCentral()
}

dependencies {
    compileOnly 'org.projectlombok:lombok:1.18.8'
    compile 'org.springframework.boot:spring-boot-starter-data-elasticsearch:2.1.8.RELEASE'
    compile 'com.h2database:h2:1.4.199'
    compile 'org.modelmapper:modelmapper:2.3.5'

    annotationProcessor 'org.projectlombok:lombok:1.18.8'

    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation 'org.springframework.boot:spring-boot-starter-web'

    runtimeOnly 'mysql:mysql-connector-java'

    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testCompile 'org.mockito:mockito-core:2.1.0'
    testImplementation('org.junit.jupiter:junit-jupiter:5.5.2')

}

test {
    useJUnitPlatform()
}

И тест, который я пытаюсь запустить:

package com.danielazheleva.blog.services.Impl

import org.junit.jupiter.api.Test


class TripServiceImplTest {


    void setUp() {
        super.setUp()
    }

    @Test
    void testGetAllTrips() {

    }
}
...