コード例 #1
0
def test_destroy():
    a = App()
    c = CheckBox(a, "foo")
    destroy_test(c)
    a.destroy()
コード例 #2
0
def test_destroy():
    a = App()
    w = Waffle(a)
    destroy_test(w)
    a.destroy()
コード例 #3
0
def test_destroy():
    a = App()
    b = Box(a)
    destroy_test(b)
    a.destroy()
コード例 #4
0
def test_destroy():
    a = App()
    t = TextBox(a)
    destroy_test(t)
    a.destroy()
コード例 #5
0
ファイル: test_buttongroup.py プロジェクト: sobreira/guizero
def test_destroy():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    destroy_test(b)
    a.destroy()
コード例 #6
0
def test_destroy():
    a = App()
    c = Combo(a, ["foo", "bar"])
    destroy_test(c)
    a.destroy()
コード例 #7
0
ファイル: test_pushbutton.py プロジェクト: rajbatra52/guizero
def test_destroy():
    a = App()
    b = PushButton(a)
    destroy_test(b)
    a.destroy()
コード例 #8
0
def test_destroy():
    a = App()
    s = Slider(a)
    destroy_test(s)
    a.destroy()
コード例 #9
0
def test_destroy():
    a = App()
    d = Drawing(a)
    destroy_test(d)
    a.destroy()
コード例 #10
0
def test_destroy():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    destroy_test(l)
    a.destroy()
コード例 #11
0
ファイル: test_titlebox.py プロジェクト: maroph/guizero
def test_destroy():
    a = App()
    b = TitleBox(a, "title")
    destroy_test(b)
    a.destroy()
コード例 #12
0
def test_destroy():
    a = App()
    p = Picture(a)
    destroy_test(p)
    a.destroy()