[java code coverage] How to exclude folder in Maven project

2018-08-30 Thread raj . selenium3
How to exclude folder like src/test/java in Maven project. -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+unsubscr...@googlegroups.com. To

Re: [java code coverage] How to exclude packages while using jacoco maven plugin

2018-11-09 Thread raj . selenium3
Thanks On Friday, September 14, 2018 at 3:58:13 PM UTC+5:30, Marc R. Hoffmann wrote: > > By using the excludes parameter of the report plugin. See documentation: > > https://www.jacoco.org/jacoco/trunk/doc/report-mojo.html > > For example: > > > my/unwanted/package/* > > Cheers,

Re: [java code coverage] does Jacoco consider if unit tests are out side of src/test/java

2018-12-17 Thread raj . selenium3
Hello Marc, sorry for late response. Its took me some time to come up with example. Let me explain you my problem. [image: sample.png] in the above pic, which is marked in black color is the actual business code and unit test is marked in red color. And Cucumber(BDD) tests are marked in blue

Re: [java code coverage] does Jacoco consider if unit tests are out side of src/test/java

2018-12-17 Thread raj . selenium3
all these tests are executed successfully. I tried profile using "clean install -P acceptance-tests" but did not go well. Here is the code for ref. https://github.com/rajselenium3/jacoco -Raj On Tuesday, December 18, 2018 at 2:30:31 AM UTC+5:30, Evgeny Mandrikov wrote: > > > > On

Re: [java code coverage] does Jacoco consider if unit tests are out side of src/test/java

2018-12-18 Thread raj . selenium3
Thanks. actually it was my fault.. I did not execute profile "clean install -P acceptance-tests" properly:( -Raj On Tuesday, December 18, 2018 at 1:50:06 PM UTC+5:30, Evgeny Mandrikov wrote: > > > > On Tuesday, December 18, 2018 at 4:47:59 AM UTC+1, raj.se...@gmail.com > wrote: >> >>

[java code coverage] does Jacoco consider if unit tests are out side of src/test/java

2018-11-27 Thread raj . selenium3
Hello, all my unit tests are out side of src/test/java. In this case, does Jacoco recognize my unit tests? plz help me in this regard. -Raj -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and

[java code coverage] Re: does Jacoco consider if unit tests are out side of src/test/java

2018-12-19 Thread raj . selenium3
that's true. On Wednesday, December 19, 2018 at 8:06:43 PM UTC+5:30, Balesh koijam wrote: > > i did a recent test example where i store one of my java class outside the > test folder. i saw the code coverage was reported, so i dont think it is > mandatory that java classes should be inside