KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > junit > testresults > test > TestSuccess


1 /*
2  * TestSuccess.java
3  *
4  * Created on September 27, 2006, 2:40 PM
5  *
6  * To change this template, choose Tools | Options and locate the template under
7  * the Source Creation and Management node. Right-click the template and choose
8  * Open. You can then make changes to the template in the Source Editor.
9  */

10
11 package org.netbeans.test.junit.testresults.test;
12
13 /**
14  *
15  * @author ms159439
16  */

17 public class TestSuccess {
18     
19     /** Creates a new instance of TestSuccess */
20     public TestSuccess() {
21     }
22     
23     public boolean True() {
24         return true;
25     }
26     
27     public boolean False() {
28         return false;
29     }
30     
31 }
32
Popular Tags