Coverage details for com.clustercontrol.performance.rrdtool.SITests

LineHitsSource
1 package com.clustercontrol.performance.rrdtool;
2  
3 import java.io.File;
4  
5 import com.clustercontrol.performance.rrdtool.PerformanceCSVExportUT001;
6 import com.clustercontrol.performance.rrdtool.PerformanceCSVExportUT002;
7 import com.clustercontrol.performance.rrdtool.PerformanceCSVExportUT003;
8 import com.clustercontrol.performance.rrdtool.PerformanceCSVExportUT004;
9 import com.clustercontrol.performance.rrdtool.csv.CSVColumnUT001;
10 import com.clustercontrol.performance.rrdtool.csv.CSVColumnUT002;
11  
12 import junit.framework.Test;
13 import junit.framework.TestSuite;
14  
150public class SITests {
16  
17     public static Test suite() {
181        TestSuite suite = new TestSuite("Test for com.clustercontrol.performanceMGR.rrdtool");
19         //$JUnit-BEGIN$
201        init();
21         
221        suite.addTestSuite(PerformanceCSVExportUT004.class);
231        suite.addTestSuite(PerformanceCSVExportUT001.class);
241        suite.addTestSuite(PerformanceCSVExportUT003.class);
251        suite.addTestSuite(PerformanceCSVExportUT002.class);
261        suite.addTestSuite(CSVColumnUT001.class);
271        suite.addTestSuite(CSVColumnUT002.class);
28         
291        suite.addTestSuite(PerformanceCSVExportSI001.class);
30         //$JUnit-END$
311        return suite;
32     }
33  
34     /**
35      * 出力ファイルの初期?
36      */
37     public static void init() {
381        File ut_out_dir = new File("resource/si_out");
391        if (ut_out_dir.isDirectory()) {
405            for (File file : ut_out_dir.listFiles()) {
414                file.delete();
42             }
43         }
441    }
45 }

this report was generated by version @product.version@ of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.