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