• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Code coverage in sonar

 
Ranch Hand
Posts: 103
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have created a simple maven project.Having only App.java under main>java>src and one AppTest.java under test>java>src.
In App.java I have written a class called Calculator having add and substract method.In AppTest.java I have written testAdd and testSubstract.AppTest working fine when I run it through eclipse.Now I copied App.java and AppTest.java into the respective folder of my maven artifact.Now I run "mvn test" it shows "Build Successful"."Total test run 2".Now I have built the project in hudson.In the hudson build console same output is shown.Now I open up sonar and clicked on the sonar job to see the code coverage it shows

Code coverage Test success
- 0 tests
I am not getting why it is showing 0 test success when both in maven and hudson it is showing total test run 2.And one more thing how to see the code coverage.Please help

Regards,
Arka
reply
    Bookmark Topic Watch Topic
  • New Topic