Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/huluvu424242/jtestsuiteplugin.eclipse-plugin
- Owner: Huluvu424242
- License: lgpl-3.0
- Created: 2014-11-29T13:11:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-24T17:54:59.000Z (almost 10 years ago)
- Last Synced: 2023-03-18T00:30:55.344Z (over 1 year ago)
- Language: Java
- Size: 457 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.jarExample
-------
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(){
}
}