| csdl.foo.TestBar
TestBar | abstract public class TestBar extends TestCase (Code) | | Provides one test case for class Bar.
author: Joy M. Agustin version: $Id: TestBar.java,v 1.4 2004/11/07 08:53:27 timshadel Exp $ |
Constructor Summary | |
public | TestBar(String name) Required by JUnit. |
Method Summary | |
abstract public int | oneAbstract() | public void | oneVoid() | public void | testBar() Prints out method name to screen, creates an instance of the Bar class, calls the main method
in Bar, and then performs a meaningless test. |
TestBar | public TestBar(String name)(Code) | | Required by JUnit.
Parameters: name - Description of the Parameter |
oneAbstract | abstract public int oneAbstract()(Code) | | |
oneVoid | public void oneVoid()(Code) | | |
testBar | public void testBar() throws Exception(Code) | | Prints out method name to screen, creates an instance of the Bar class, calls the main method
in Bar, and then performs a meaningless test.
throws: Exception - Description of the Exception |
|
|