5

Tried to add the following code at the end of my build.gradle file in Android-Studio 1.2 (as advised in this post):

test {
    testLogging {
        events "passed", "skipped", "failed", "standardOut", "standardError"
    }
}

But got:

Error:(40, 0) Gradle DSL method not found: 'test()'
Possible causes:
- The project 'xxxxx' may be using a version of Gradle that does not contain the method.
- The build file may be missing a Gradle plugin.

What did I miss?

Community
  • 1
  • 1
Eric Leibenguth
  • 4,167
  • 3
  • 24
  • 51

1 Answers1

16

The gradle documentation: https://docs.gradle.org/current/dsl/org.gradle.api.tasks.testing.Test.html

indicates that the 'test' task is sourced from the java plugin:

apply plugin: 'java' // adds 'test' task

This as you say conflicts with the com.android.application plugin.

Solution

I have finally worked out how to do this. Rather than apply the logging changes to the test tasks (which is only available from java plugin) you can apply it to all tasks of type 'Test' as follows:

//Test Logging
tasks.withType(Test) {
    testLogging {
        events "started", "passed", "skipped", "failed"
    }
}

Now when you run ./gradlew test you should get these events logged as the tests are processed.

user3521637
  • 1,622
  • 2
  • 18
  • 25
  • 3
    You rock bro! Just FYI to future me: Place this outside of any other closure (i.e not inside android{} block) – Shubham Chaudhary Nov 10 '15 at 06:11
  • @ShubhamChaudhary you can include this in `android.testOptions.unitTests.all`, then you don't need to filter the tasks first (i.e. leave out the first line). – Big McLargeHuge Aug 07 '20 at 22:51