2016-05-11 41 views
6

Mentre i test sono in esecuzione, il numero di test eseguiti fino ad ora viene visualizzato temporaneamente, ma come posso stampare il numero totale di test eseguiti sulla console dopo che tutti i test sono stati eseguiti?Come configurare gradle per emettere il numero totale di test eseguiti?

La configurazione di testLogging non è di aiuto. Posso fare uscita Gradle un risultato per ogni prova, in questo modo:

testLogging { 
    events "passed", "skipped", "failed" 
} 

Ma voglio una sintesi "bottom line", che emette il numero totale di test che sono stati eseguiti, anche se tutti passati.

risposta

5

Si può usare afterSuite closure con TestResult argomento . F.e. (Preso in prestito da https://gist.github.com/orip/4951642):

test { 
    testLogging { 
    afterSuite { desc, result -> 
     if (!desc.parent) { // will match the outermost suite 
     println "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)" 
     } 
    } 
    } 
} 
1

Utilizzando Gradle 2.12 con un progetto semplice (con 2 suite di test), questo script:

apply plugin: 'java' 

repositories { 
    mavenCentral() 
} 

dependencies { 
    testCompile 'junit:junit:4.12' 
} 

def numTests = 0 

test { 
    beforeTest { descriptor -> 
     logger.lifecycle("Running test: " + descriptor) 
     numTests++ 
    } 
} 

test << { 
    println "\nnumTests executed: ${numTests}" 
} 

dà questa uscita (per me):

bash$ gradle clean test 
:clean 
[snip] 
:test 
Running test: Test test1(net.codetojoy.ActorTest) 
Running test: Test test2(net.codetojoy.ActorTest) 
Running test: Test test3(net.codetojoy.ActorTest) 
Running test: Test test4(net.codetojoy.ActorTest) 
Running test: Test test1(net.codetojoy.SniffTest) 
Running test: Test test2(net.codetojoy.SniffTest) 
Running test: Test test3(net.codetojoy.SniffTest) 
Running test: Test test4(net.codetojoy.SniffTest) 
Running test: Test test5(net.codetojoy.SniffTest) 
Running test: Test test6(net.codetojoy.SniffTest) 

numTests executed: 10 
+0

ottiene il lavoro fatto, ma io sto cercando un/approccio impostazione di configurazione - sembra ragionevole che ci dovrebbe essere un modo semplice di emetterlo. – Bohemian