Warning, file /sdk/doxyqml/tests/unit/tests.py was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/usr/bin/env python3
0002 import os
0003 import sys
0004 import unittest
0005 
0006 
0007 if __name__ == "__main__":
0008     current_dir = os.path.dirname(__file__)
0009     args = [sys.argv[0]] + ["discover", "--start-directory", current_dir, "--pattern", "*testcase.py"] + sys.argv[1:]
0010     unittest.main(module=None, argv=args)
0011 # vi: ts=4 sw=4 et