Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/huluvu424242/jtestsuiteplugin.eclipse-plugin

Annotations to extends JUnit Tests
https://github.com/huluvu424242/jtestsuiteplugin.eclipse-plugin

Last synced: 27 days ago
JSON representation

Annotations to extends JUnit Tests

Awesome Lists containing this project

README

        

jtestsuiteplugin
================

Annotations to extends JUnit Tests
----------------------------------

Update Site URL for eclipse plugin:

jar:http://dl.bintray.com/funthomas424242/eclipse-features/jtestsuiteplugin.updatesite-1.0.0-SNAPSHOT.zip!/

Download URL for the annotation jar:

http://dl.bintray.com/funthomas424242/eclipse-features/#jtestsuiteplugin.annotations-1.0.0-SNAPSHOT.jar

Example
-------


package test;

import gh.funthomas424242.junitsupport.annotations.TestSuite;

public class TestSuiteDefinition {

@TestSuite(packageName="tests", className="IntenTestSuite", categories={"Integration", "kategorie1"})
public void doIntegrationTests(){

}

@TestSuite(packageName="testsuites", className="ModulTestSuite", categories={"Modul"})
public void doModulTests(){

}

}