This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 171050
Collapse All | Expand All

(-)a/junit/src/org/netbeans/modules/junit/output/JUnitOutputReader.java (-2 / +2 lines)
Lines 542-547 Link Here
542
    /**
542
    /**
543
     */
543
     */
544
    void testTaskFinished() {
544
    void testTaskFinished() {
545
            closePereviousReport(); // #171050
545
    }
546
    }
546
547
547
    private void closePereviousReport(){
548
    private void closePereviousReport(){
Lines 594-600 Link Here
594
    /**
595
    /**
595
     */
596
     */
596
    void buildFinished(final AntEvent event) {
597
    void buildFinished(final AntEvent event) {
597
        closePereviousReport();
598
        manager.sessionFinished(testSession);
598
        manager.sessionFinished(testSession);
599
    }
599
    }
600
600
Lines 739-745 Link Here
739
            return false;
739
            return false;
740
        }
740
        }
741
    }
741
    }
742
    
742
743
    private File findReportFile() {
743
    private File findReportFile() {
744
        File file = new File(resultsDir,
744
        File file = new File(resultsDir,
745
                             "TEST-" + testSession.getCurrentSuite().getName() + ".xml"); //NOI18N
745
                             "TEST-" + testSession.getCurrentSuite().getName() + ".xml"); //NOI18N

Return to bug 171050