1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-16 14:23:58 +00:00
QB64-PE/internal/c/mingw32/opt/lib/python2.7/lib-tk/test
2019-01-01 22:40:38 +11:00
..
test_tkinter Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
test_ttk Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
README Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
runtktests.py Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
runtktests.pyc Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
runtktests.pyo Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
widget_tests.py Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
widget_tests.pyc Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
widget_tests.pyo Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00

Writing new tests
=================

Precaution
----------

    New tests should always use only one Tk window at once, like all the
    current tests do. This means that you have to destroy the current window
    before creating another one, and clean up after the test. The motivation
    behind this is that some tests may depend on having its window focused
    while it is running to work properly, and it may be hard to force focus
    on your window across platforms (right now only test_traversal at
    test_ttk.test_widgets.NotebookTest depends on this).