-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathhelloTest.java
More file actions
43 lines (33 loc) · 725 Bytes
/
Copy pathhelloTest.java
File metadata and controls
43 lines (33 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package common;
import org.junit.Test;
import junit.framework.TestCase;
/*
* Date: 2010-5-12
* Time: 15:38:21
*/
public class helloTest extends TestCase {
/**
* Constructor for BookTest.
* @param name
*/
public helloTest(String name) {
super(name);
}
/**
* setUp() method that initializes common objects
*/
protected void setUp() throws Exception {
super.setUp();
}
/**
* tearDown() method that cleanup the common objects
*/
protected void tearDown() throws Exception {
super.tearDown();
}
public static void testNothing() {
}
public void testWillAlwaysFail() {
// fail("An error message");
}
}