summaryrefslogtreecommitdiff
path: root/python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft
blob: 2e6fd4c78eed38bde39101a215f0b6c7046d2095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from test_helper import run_common_tests, failed, passed, get_task_windows


def test_task_windows():
    windows = get_task_windows()
    window = windows[0]
    if window != "":       # TODO: your condition here
        passed()
    else:
        failed()


if __name__ == '__main__':
    run_common_tests()
    test_task_windows()