How to verify of cobertura.jar file is loaded into jvm

scmuser created the topic: How to verify of cobertura.jar file is loaded into jvm

How to verify of cobertura.jar file is loaded into jvm? I have instrumented class but Automated test is not writing any thing in ser file? Any verification checklist?

rajeshkumar replied the topic: How to verify of cobertura.jar file is loaded into jvm

As far as i know, there is no password protection for OST file. Yes there is for .pst file.

Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn

Tagged :

Cobertura – how to check if class file is instrumented or not?

scmuser created the topic: Cobertura – how to check if class file is instrumented or not?

Hi,

Could you please tell me how to check if class file is instrumented or not using Cobertura?

Tagged :

Could not find or load main class net.sourceforge.cobertura.instrument

scmuser replied the topic: Could not find or load main class net.sourceforge.cobertura.instrument

Still could not resolve the issues as below;

C:\Users\rkumar11>cd C:\cobertura
C:\cobertura>cobertura-check.bat
Error: Could not find or load main class net.sourceforge.cobertura.check.Main
C:\cobertura>cobertura-check.bat
Error: Could not find or load main class net.sourceforge.cobertura.check.Main
C:\cobertura>ls -1
11.txt
cobertura-2.0.3.jar
cobertura-report.sh
EnhancedFor.java
cobertura-check.bat
coberturaFlush.war
LICENSE.txt
cobertura-check.sh
datafile
PrimitiveParameters.java
cobertura-instrument.bat
examples
README. markdown
cobertura-instrument. sh
instrumented
basedir
cobertura-merge.bat
lib
cobertura-2.0.3-javadoc.jar
cobertura-merge.sh
cobertura-2.0.3-sources.jar
cobertura-report.bat

C:\cobertura>echo %JAVA_HOME%
C:\Tools\Java\jdk1.7.0_25
C:\cobertura>echo %JAVA_HOME%
C:\Tools\Java\jdk1.7.0_25
Tagged :

Instrumentating class file using Ant in Cobertura

rajeshkumar created the topic: Instrumentating class file using Ant in Cobertura

Instrumentating class file using Ant in Cobertura

Cobertura’s documentation gives the following example to show how instrumentation can be done on classes inside a jar file that is on Cobertura’s classpath.

ANT SCRIPT

<project>
<property name="cobertura.dir" value="../cobertura-2.0.3" />
<property name="instrumented.dir" value="../destination" />
<property name="jars.dir" value="../basedir" />
<property name=" cobertura.datafile " value="../datafile" />


<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura-2.0.3.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>



<target name="instrument-classes">
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
<delete file="cobertura.ser" />

<cobertura-instrument todir="${instrumented.dir}" datafile="${cobertura.datafile}">
<fileset dir="${jars.dir}">
<include name="XXX.jar" />
</fileset>
<fileset dir="${jars.dir}">
<include name="YYYY.jar" />
</fileset>
</cobertura-instrument>
</target>
</project>

FAQ –
github.com/cobertura/cobertura/wiki/FAQ#…-coverage-everywhere
alvinalexander.com/blog/post/java/sample…ura-ant-build-script
alvinalexander.com/blog/post/best-practi…ertura-code-coverage
stackoverflow.com/questions/12690688/cob…ra-ant-merge-reports
mojo.codehaus.org/cobertura-maven-plugin/cobertura-mojo.html

Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn

Tagged :

Seeking in and out of Cobertura

mnanjala created the topic: Seeking in and out of Cobertura
Hi All,

I need all info about Cobertura

How we can implement?How much time it would need to get implemented?What are all code base it supports?What is benifits? I saw the website did not understand fully.

-Thanks
Pravin

rajeshkumar replied the topic: Re: Seeking in and out of Cobertura
Hi Praveen,

Hope this will help you….

Official Site of cobertura
cobertura.sourceforge.net/

FAQ cobertura
cobertura.sourceforge.net/faq.html

cobertura Introdcution
cobertura.sourceforge.net/introduction.html

cobertura Command Line reference
cobertura.sourceforge.net/commandlinereference.html

cobertura Ant Task Reference
cobertura.sourceforge.net/anttaskreference.html

cobertura with Maven
cobertura.sourceforge.net/maven.html

cobertura Plugins for Hudson
wiki.hudson-ci.org/display/HUDSON/Cobertura+Plugin

cobertura Good tutorial
www.devx.com/ibm/Article/28095

cobertura Bamboo plugins
studio.plugins.atlassian.com/wiki/displa…boo+Cobertura+Plugin
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn

Tagged :

Top 5 Code Coverage Tools | Best Test Coverage Tools

Today we will talk about code coverage tools which are used by developers for measuring the quality of the software testing. There are so many different types of code coverage tools, some are basics and others that are exceptionally thorough.
But before going further on tools let’s first see what is Code Coverage?
Code Coverage is a methodology, which is performed to measure and describe how much the source code of a program is executed when a specific test suite runs. It gives a percentage score to a program which defines as a high code coverage and low code coverage. If it gets high percentage of code coverage during testings which means it has a minimal chance of containing undiscovered software bugs in the comparison of a program which scored low percentage of code coverage while testing. In simple words , code coverage is performed to check whether your tests are really analyzing your code or not. With code coverage, one can tell the amount of your code is being tested by running the test.
Where to use ?
Code coverage tools can be performed on .NET, Java, Visual C/C++ and Visual Basic applications.
Benefits of Code Coverage
Dead Code Identification – The first and the major benefits of code coverage is that after running this test you will get the outputs that shows those functions which are not called, after detecting that you can identify whether the code is untouched as no required use case exists or code is dead code (i.e. not required).
Missing test Identification – It can be beneficial in identifying the extra tests (exceptional cases), which are missed out earlier after running the test suites analysis report.
Quality Assurance – Quality of a product or application is one of the major concern in software world and this can be done by measuring the report after running the code coverage. Higher the amount of coverage better will be the quality of product or application and lesser is the chance to have defects.
Now the next question here is which code coverage tools to choose ?
This is the real challenge to choose which code coverage tools to use for application testing. I also thought about it and after few hours research on the internet and with the help of google trend I shortlisted my results and pick top 5 code coverage tools.
1. Cobertura –
code-coverage-tool-cobertura
Cobertura is one of the most used and best code coverage tools. This is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage. It is easy to use and can measure coverage without having the source code. It’s represents reports in HTML or XML format, It has capacity to test lines and branches of class and method.
2. JaCoCo –
code-coverage-tool-jacoco
JaCoCo is also an open source free code coverage tools for Java, which has been made by the EclEmma group in view of the lessons gained from utilizing and joining existing libraries for a long time. JaCoCo offers instructions, line and branch coverage. It can instrument off-line and on-the-fly and It fully supports Java 7 and Java 8. It also has capacity to test lines and branches of class and method. It also provide very nice and easy to navigate HTML or XML report.
3. Clover –
code-coverage-tool-clover
Clover is also a Java Code Coverage tools bought and further developed by Atlassian. It is also an open source tool. Clover provide very helpful configurable HTML reports demonstrating code scope as well as high level risks and so on, per-test code coverage and test enhancement, dispersed per-test coverage and many instrument integration; it is by and large effectively created and supported.
4. NCover-
code-coverage-tool-ncover
NCover is a code coverage tool for .Net programs and applications. It supports statement coverage and branch coverage. It is also very easy to use and fast tool which is available on open source and as well as on commercial license. This tool can perform manual as well as automated code coverage tests and it provides nice and attractive multiple testing environments.
5. Testwell CTC++ –
code-coverage-tool-testwell-ctc++
Testwell CTC++ is a code coverage tool for  C and C++ but it also can be used for Java and C#. The development of this tool is belongs to Testwell which lately acquired by Verifysoft Technology GmbH for C and C++. This tool can check Statement Coverage, Function Coverage, Decision Coverage, Multi Condition Coverage, Modified Condition/Decision Coverage (MC/DC), Condition Coverage. This is also in the category of user-friendly and fast tools. It finds missing test cases smoothly. It provide reports on XML format.
So, This is my list of top code coverage tools, I hope this list will help you in your testings. But, if you think this list should contain any other tools instead these than feel free to share with us in comment box below.
Tagged : / / / / / / / / / / / / / / /