Giter Club home page Giter Club logo

Comments (4)

tkrullmann avatar tkrullmann commented on August 11, 2024

I tried your setup with Spek and it seems to me that Spek, unlike JUnit, scans the entire classpath for tests, which is probably a bug.

Gradle's Test tasks have two separate properties for this, classpath (which contains the entire classpath) and testClassesDirs (which should be the only place to scan for tests). The Spek runner doesn't seem to respect this.

You can verify this by logging the files in the two properties before the test is executed:

tasks.withType<Test> {
    doFirst {
        println ("""
            Test task "$name":
              testClassesDirs: ${testClassesDirs.joinToString()}
              classpath: ${classpath.joinToString()}
        """.trimIndent())
    }
}

from gradle-testsets-plugin.

jcornaz avatar jcornaz commented on August 11, 2024

Thanks @tkrullmann. It looks like a bug on the spek side indeed.

I'll seek a resolution in Spek: spekframework/spek/issues/572.

from gradle-testsets-plugin.

jcornaz avatar jcornaz commented on August 11, 2024

@tkrullmann, Actually, why are the unit tests in the classpath of my integration tests?

Reading:

I understand that:

All new test sets implicitly extend the "unitTest" set.

and that

It does not mean, however, that the source (classes / resources) of the extended test set will be available to the extending test set.

So, given my configuration, I expect my integration tests to have the same dependencies than my unit tests, but I do not expect to find my unit tests in the classpath of my integration tests.

from gradle-testsets-plugin.

jcornaz avatar jcornaz commented on August 11, 2024

Apparently the latest release solved this problem. Thank you very much.

from gradle-testsets-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.