|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| AllTests.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package net.sourceforge.astyleclipse.astyle; | |
| 2 | ||
| 3 | import junit.framework.Test; | |
| 4 | import junit.framework.TestSuite; | |
| 5 | ||
| 6 | public class AllTests { | |
| 7 | ||
| 8 | 1 | public static Test suite() { |
| 9 | 1 | TestSuite suite = new TestSuite( |
| 10 | "Test for net.sourceforge.astyleclipse.astyle"); | |
| 11 | //$JUnit-BEGIN$ | |
| 12 | 1 | suite.addTestSuite(TestASStreamIterator.class); |
| 13 | 1 | suite.addTestSuite(TestASBeautifier.class); |
| 14 | 1 | suite.addTestSuite(TestASFormatter.class); |
| 15 | //$JUnit-END$ | |
| 16 | 1 | return suite; |
| 17 | } | |
| 18 | ||
| 19 | } |
|
||||||||||