comparison src/treecms/test/AbstractNodeTest.java @ 23:77a894c0b919

commit
author shoshi
date Thu, 09 Jun 2011 01:03:48 +0900
parents 168deb591f21
children c1e7ec6b3d44
comparison
equal deleted inserted replaced
22:fa784faafc78 23:77a894c0b919
4 import java.util.List; 4 import java.util.List;
5 import junit.framework.Assert; 5 import junit.framework.Assert;
6 import org.junit.Test; 6 import org.junit.Test;
7 import treecms.api.NodeChildren; 7 import treecms.api.NodeChildren;
8 import treecms.api.NodeID; 8 import treecms.api.NodeID;
9 import treecms.api.SingleNode;
10 import treecms.tree.util.NodeChildrenImpl; 9 import treecms.tree.util.NodeChildrenImpl;
11 10
12 /** 11 /**
13 * Node実装の基本的なテスト 12 * Node実装の基本的なテスト
14 * @author shoshi 13 * @author shoshi
17 { 16 {
18 /** 17 /**
19 * テストに用いるNodeを実装者は返す 18 * テストに用いるNodeを実装者は返す
20 * @return Node 19 * @return Node
21 */ 20 */
22 public abstract SingleNode getInstance(); 21 public abstract Node getInstance();
23 22
24 /** 23 /**
25 * NodeID取得のテスト 24 * NodeID取得のテスト
26 */ 25 */
27 @Test 26 @Test