Implemented interface member:
12 references to Contains
System.Windows.Forms.Tests (12)
System\Windows\Forms\Combobox.ObjectCollectionTests.cs (12)
484
Assert.True(comboBoxObjectCollection.
Contains
("a"));
485
Assert.True(comboBoxObjectCollection.
Contains
("b"));
486
Assert.False(comboBoxObjectCollection.
Contains
("c"));
488
Assert.True(comboBoxObjectCollection.
Contains
(comboBoxObjectCollection.InnerList[0]));
489
Assert.True(comboBoxObjectCollection.
Contains
(comboBoxObjectCollection.InnerList[1]));
490
Assert.False(comboBoxObjectCollection.
Contains
(new Entry("a")));
512
Assert.True(comboBoxObjectCollection.
Contains
(person1));
513
Assert.True(comboBoxObjectCollection.
Contains
(person2));
514
Assert.False(comboBoxObjectCollection.
Contains
(person3));
516
Assert.True(comboBoxObjectCollection.
Contains
(comboBoxObjectCollection.InnerList[0]));
517
Assert.True(comboBoxObjectCollection.
Contains
(comboBoxObjectCollection.InnerList[1]));
518
Assert.False(comboBoxObjectCollection.
Contains
(new Entry(person3)));