9 lines
182 B
Python
9 lines
182 B
Python
|
from test import support
|
||
|
from tkinter.test import runtktests
|
||
|
|
||
|
def test_main():
|
||
|
support.run_unittest(*runtktests.get_tests(gui=False))
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
test_main()
|