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