public void test(TestHarness harness)
{
JComboBox combo = new JComboBox(new TestModel2());
combo.insertItemAt("TESTVALUE", 5);
harness.check(combo.getItemAt(5), "TESTVALUE", "insertItemAt");
combo.removeItem("TESTVALUE");
harness.check(combo.getItemCount(), 10, "removeItem");