5
|
1 package treecms.test;
|
|
2
|
|
3 import org.junit.Test;
|
|
4
|
|
5 import treecms.api.Tree;
|
|
6 import treecms.api.TreeEditor;
|
|
7
|
|
8 public class TreeEditorTest
|
|
9 {
|
|
10 Tree m_tree;
|
|
11 TreeEditor m_editor;
|
|
12
|
|
13 public TreeEditorTest(TreeEditor _editor,Tree _tree)
|
|
14 {
|
|
15 m_editor = _editor;
|
|
16 m_tree = _tree;
|
|
17 }
|
|
18
|
|
19 @Test
|
|
20 public void testEdit()
|
|
21 {
|
|
22
|
|
23 }
|
|
24
|
|
25 @Test
|
|
26 public void testCommit()
|
|
27 {
|
|
28
|
|
29 }
|
|
30
|
|
31 @Test
|
|
32 public void testCheck()
|
|
33 {
|
|
34
|
|
35 }
|
|
36
|
|
37 @Test
|
|
38 public void testUpdate()
|
|
39 {
|
|
40
|
|
41 }
|
|
42 }
|