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