コード例 #1
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTreeSelectedItemsEvalMethodException()
 {
     Tree tree = new Tree("tree");
     tree.SelectedItemsEvalMethod();
 }
コード例 #2
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTreeSelectedItemsEvalMethod()
 {
     Tree tree = new Tree("tree").AddItems(new object[] { "root/1/1", "root/2/2" });
     Assert.AreEqual("base.selectPaths([\"root/1/1\",\"root/2/2\"])", tree.SelectedItemsEvalMethod("base"));
 }