def test_color(): a = App() b = Box(a) color_test(b) a.destroy()
def test_color(): a = App() c = CheckBox(a, "foo") color_test(c) a.destroy()
def test_color(): a = App() b = ButtonGroup(a, ["foo", "bar"]) color_test(b) a.destroy()
def test_color(): a = App() w = Waffle(a) color_test(w) a.destroy()
def test_color(): a = App() b = PushButton(a) color_test(b) a.destroy()
def test_color(): a = App() t = TextBox(a) color_test(t) a.destroy()
def test_color(): a = App() c = Combo(a, ["foo", "bar"]) color_test(c) a.destroy()
def test_color(): a = App() s = Slider(a) color_test(s) a.destroy()
def test_color(): a = App() l = ListBox(a, ["foo", "bar"]) color_test(l) a.destroy()
def test_color(): a = App() b = TitleBox(a, "title") color_test(b) a.destroy()
def test_color(): a = App() p = Picture(a) color_test(p) a.destroy()