There's a typo in the task integrationTest config (slide 37 at 24:16): testResultsDir = file("$testResultsDir/integration") $testResultsDir is not defined. What should it be?
+Andrew McLaughlin default for unit tests is "$buildDir/reports/tests" , so guess you could use "$buildDir/reports/integration" for example. Also, since i'm doing this, using Gradle 2.8, using testResultsdir and testReportDir is deprecated, the new way is this: reports.junitXml.destination = file("$buildDir/test-results") reports.html.destination = file("$buildDir/reports/integration")
This was an awesome presentation, helped me a lot to get started
There's a typo in the task integrationTest config (slide 37 at 24:16):
testResultsDir = file("$testResultsDir/integration")
$testResultsDir is not defined. What should it be?
+Andrew McLaughlin default for unit tests is "$buildDir/reports/tests" , so guess you could use "$buildDir/reports/integration" for example.
Also, since i'm doing this, using Gradle 2.8, using testResultsdir and testReportDir is deprecated, the new way is this:
reports.junitXml.destination = file("$buildDir/test-results")
reports.html.destination = file("$buildDir/reports/integration")
Nice Presentation, loved the Austrian/Arnold Schwarzenegger/Terminator accent, kept me engaged!
hahahahah true
[27:31] liquibase and flyway compares schema versions
do you have github with this codes?
can i get github repo path if you created any public repositories? I would like to implement it on localhost