示例#1
0
        public void ItemsTest()
        {
            ToolStripComboBox ComboBox = null;                       // TODO: Initialize to an appropriate value
            ComboBoxItem      target   = new ComboBoxItem(ComboBox); // TODO: Initialize to an appropriate value

            ComboBox.ObjectCollection expected = null;               // TODO: Initialize to an appropriate value
            ComboBox.ObjectCollection actual;
            actual = target.Items();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }