コード例 #1
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTextBoxSelectedItemException()
 {
     TextBox box = new TextBox("box");
     box.SelectedItem();
 }
コード例 #2
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestTextBoxSelectedItem()
 {
     TextBox box = new TextBox("box").AddItem("item1");
     Assert.AreEqual("item1", box.SelectedItem());
 }