Difference between revisions of "Java home"
(→Links) |
|||
Zeile 17: | Zeile 17: | ||
**http://fit-for-rules.sourceforge.net/ |
**http://fit-for-rules.sourceforge.net/ |
||
**http://web.openwfe.org/ |
**http://web.openwfe.org/ |
||
+ | |||
+ | ==JUnit== |
||
+ | ===Version Info=== |
||
+ | Manchmal möchte man die Version einer junit-JAR herausbekommen. Das manifest enthält nichts und die Klasse Version keine Main-Methode. |
||
+ | |||
+ | <pre> |
||
+ | import junit.runner.Version; |
||
+ | public class JUnitVersion { |
||
+ | public static void main(String[] args) { |
||
+ | System.out.println(Version.id()); |
||
+ | } |
||
+ | } |
||
+ | </pre> |
Version vom 09:29, 21 November 2006
Inhaltsverzeichnis
Rules Engines
Overview
Business Rules Management Systems (BRMS), decision tables (Entscheidungstabellen)
Links
- information
- standards
- implementations
JUnit
Version Info
Manchmal möchte man die Version einer junit-JAR herausbekommen. Das manifest enthält nichts und die Klasse Version keine Main-Methode.
import junit.runner.Version; public class JUnitVersion { public static void main(String[] args) { System.out.println(Version.id()); } }