Download quality-test-1.3.jar file - Jar q

Jar examples for q:quality-test

Description

The goal of quality-test is to provide a small Java library for basic code quality checks within unit tests. It is discouraged to use quality-test in production code. The checks provided in this library are designed to be used in unit-tests. The checks and utilities provided in this package check static properties of classes, for example whether classes are marked final or constructors are private. Additionally, there are utils to give additional code coverage for private constructors. Quality-Test often can be used together with Google Reflections (http://code.google.com/p/reflections/) to perform checks such as, assure that every class in package *.dto.* is final or make sure that no class in the package *.controller.* contains any non-final static variables.

You can download jar file quality-test 1.3 in this page.

License

The Apache Software License, Version 2.0

Build File

You can use the following script to add quality-test-1.3.jar to your project.

<dependency>
   <groupId>net.sf.qualitycheck</groupId>
   <artifactId>quality-test</artifactId>
   <version>1.3</version>
</dependency>
compile group: 'net.sf.qualitycheck', name: 'quality-test', version: '1.3'
libraryDependencies += "net.sf.qualitycheck" % "quality-test" % "1.3"
<dependency org="net.sf.qualitycheck" name="quality-test" rev="1.3"/>
@Grapes(@Grab(group='net.sf.qualitycheck', module='quality-test', version='1.3'))
'net.sf.qualitycheck:quality-test:jar:1.3'

Download

Click the following link to download the jar file.

quality-test-1.3-javadoc.jar
quality-test-1.3-sources.jar
quality-test-1.3.jar
quality-test-1.3.pom



Related Tutorials