-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonDemoTest.java
More file actions
58 lines (49 loc) · 817 Bytes
/
JsonDemoTest.java
File metadata and controls
58 lines (49 loc) · 817 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.json;
import com.json.JsonDemo;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/**
* JsonDemo Tester.
*
* @author <Authors name>
* @since <pre>03/06/2018</pre>
* @version 1.0
*/
public class JsonDemoTest {
@Before
public void before() throws Exception {
}
@After
public void after() throws Exception {
}
/**
*
* Method: main(String[] args)
*
*/
@Test
public void testMain() throws Exception {
//TODO: Test goes here...
}
/**
*
* Method: jsonToObject()
*
*/
@Test
public void testJsonToObject() throws Exception {
//TODO: Test goes here...
JsonDemo.jsonToObject();
}
/**
*
* Method: jsonArrayToObject()
*
*/
@Test
public void testJsonArrayToObject() throws Exception {
//TODO: Test goes here...
JsonDemo.jsonArrayToObject();
}
}