コード例 #1
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTextBoxSelectedItemsEvalMethodException()
 {
     TextBox box = new TextBox("box");
     box.SelectedItemsEvalMethod();
 }
コード例 #2
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTextBoxSelectedItemsEvalMethod()
 {
     TextBox box = new TextBox("box").AddItem("selectedText");
     Assert.AreEqual("query_base.select(\"selectedText\");", box.SelectedItemsEvalMethod("query_base"));
 }