]> git.saurik.com Git - apple/icu.git/blob - icuSources/data/buildtool/test/__main__.py
ICU-64252.0.1.tar.gz
[apple/icu.git] / icuSources / data / buildtool / test / __main__.py
1 # Copyright (C) 2018 and later: Unicode, Inc. and others.
2 # License & terms of use: http://www.unicode.org/copyright.html
3
4 import unittest
5
6 from . import filtration_test
7
8 def load_tests(loader, tests, pattern):
9 suite = unittest.TestSuite()
10 suite.addTest(filtration_test.suite)
11 return suite
12
13 if __name__ == '__main__':
14 unittest.main()