thombergs / code-examples

A collection of code examples from blog posts etc.
MIT License
2.63k stars 2.62k forks source link

Junit Insights not working #298

Open nicknlsn opened 7 months ago

nicknlsn commented 7 months ago

In your Spring Boot Test article you reference JUnit-Insights towards the end to gather information about the time it takes to run tests. I'd really like to get this dependency working but I can't get it to work. Do you have any info on how to get it to work?

First off, I can't find the jar anywhere. But I was able to build it with this command:

docker run -v ~/Documents:/hostDocuments -it --user root gradle:4.6-jdk8-alpine sh -c "apk update && apk add git && git clone https://github.com/adessoSE/junit-insights.git && cd junit-insights && gradle jar && cd .. && cp -R junit-insights /hostDocuments/."

And I can get the dependency in my project using the instructions on their readme for local development, but I still can't get any reports to be generated.

I'd appreciate any help I can get to get this to work.