コード例 #1
0
ファイル: ComponentTest.cs プロジェクト: codehaus/fest-git
 public void TestComboBoxRemoveItem()
 {
     ComboBox box = new ComboBox("box").AddItem("some text");
     Assert.AreEqual(box, box.RemoveItem("some text"));
 }