diff options
author | Jiri Vanek <[email protected]> | 2012-05-02 12:53:07 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2012-05-02 12:53:07 +0200 |
commit | e4c39211e39e630a47d0394a69529f9dbcd4d37c (patch) | |
tree | 55e09f2b03d452970581038923bd30c83bc0980e /tests/netx | |
parent | c2a298870319ea43a406a068dab2f6afc02bef90 (diff) |
Added bug annotation forr testing engine
Diffstat (limited to 'tests/netx')
-rw-r--r-- | tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/Bug.java | 32 | ||||
-rw-r--r-- | tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/NeedsDisplay.java | 18 |
2 files changed, 50 insertions, 0 deletions
diff --git a/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/Bug.java b/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/Bug.java new file mode 100644 index 0000000..ac157d9 --- /dev/null +++ b/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/Bug.java @@ -0,0 +1,32 @@ +package net.sourceforge.jnlp.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * When declare for suite class or for Test-marked method, + * should be interpreted by report generating tool to links. + * Known shortcuts are + * SX - http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=X + * PRX - http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=X + * RHX - https://bugzilla.redhat.com/show_bug.cgi?id=X + * DX - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=X + * GX - http://bugs.gentoo.org/show_bug.cgi?id=X + * CAX - http://server.complang.tuwien.ac.at/cgi-bin/bugzilla/show_bug.cgi?id=X + * LPX - https://bugs.launchpad.net/bugs/X + * + * http://mail.openjdk.java.net/pipermail/distro-pkg-dev/ + * and http://mail.openjdk.java.net/pipermail/ are proceed differently + * You just put eg @Bug(id="RH12345",id="http:/my.bukpage.com/terribleNew") + * and RH12345 will be transalated as + * <a href="https://bugzilla.redhat.com/show_bug.cgi?id=123456">123456<a> or + * similar, the url will be inclueded as is. Both added to proper tests or suites + * + */ +@Target({ElementType.METHOD,ElementType.TYPE}) +@Retention(RetentionPolicy.RUNTIME) +public @interface Bug { + public String[] id(); +} diff --git a/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/NeedsDisplay.java b/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/NeedsDisplay.java new file mode 100644 index 0000000..e8b9d49 --- /dev/null +++ b/tests/netx/jnlp_testsengine/net/sourceforge/jnlp/annotations/NeedsDisplay.java @@ -0,0 +1,18 @@ + +package net.sourceforge.jnlp.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * This annotation should be declared for each test which requires DISPALY defined. + * If no display is defined, then those test will not be run + * + */ +@Target(ElementType.METHOD) +@Retention(RetentionPolicy.RUNTIME) +public @interface NeedsDisplay { + +} |