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