-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMemmanTest.java
More file actions
41 lines (35 loc) · 918 Bytes
/
MemmanTest.java
File metadata and controls
41 lines (35 loc) · 918 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
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import junit.framework.TestCase;
import org.junit.Before;
import org.junit.Test;
// -------------------------------------------------------------------------
/**
* Memman Test class.
*
* @author ree
* @version Sep 14, 2014
*/
public class MemmanTest extends TestCase
{
@Before
public void setUp()
throws Exception
{
//
}
// ----------------------------------------------------------
/**
* test main class.
* @throws IllegalArgumentException
* @throws IllegalAccessException
* @throws InvocationTargetException
* @throws IOException
*/
@Test
public void test() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, IOException
{
String[] str = {"10", "32", "input.txt"};
Memman.main(str);
}
}