]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/python/icutools/databuilder/test/__main__.py
ICU-66108.tar.gz
[apple/icu.git] / icuSources / python / icutools / databuilder / test / __main__.py
diff --git a/icuSources/python/icutools/databuilder/test/__main__.py b/icuSources/python/icutools/databuilder/test/__main__.py
new file mode 100644 (file)
index 0000000..6ae2c0f
--- /dev/null
@@ -0,0 +1,14 @@
+# Copyright (C) 2018 and later: Unicode, Inc. and others.
+# License & terms of use: http://www.unicode.org/copyright.html
+
+import unittest
+
+from . import filtration_test
+
+def load_tests(loader, tests, pattern):
+    suite = unittest.TestSuite()
+    suite.addTest(filtration_test.suite)
+    return suite
+
+if __name__ == '__main__':
+    unittest.main()