Thursday September 14, 2006 Run only tests which uses your code
NetBeans test distribution allows to run tests for modules which requires a specific module on runtime testing classpath. For Example you have built test distribution for 'org-openide-filesystems' and 'org-netbeans-modules-masterfs' NetBeans modules.
Use case 1: You want to run test with 'org-openide-filesystems' module on runtime testing classpath:
ant unit -Dtest.required.modules=org-openide-filesystems.jar -Dnetbeans.dest.dir=netbeans_installation_dir
It runs both modules - 'org-openide-modules-masterfs.jar' and 'org-openide-filesystems.jar'.
Use case 2: You want to run test with 'org-netbeans-modules-masterfs' module on runtime classpath:
ant unit -Dtest.required.modules=org-netbeans-modules-masterfs.jar -Dnetbeans.dest.dir=netbeans_installation_dir
It runs tests only for org-netbeans-modules-masterfs module because
org-netbeans-modules-masterfs module is not on runtime testing classpath of org-openide-filesystems module.
Posted by xzajo
( Sep 14 2006, 06:05:17 PM CEST )
Permalink
Comments [4]