]>
git.saurik.com Git - apple/icu.git/blob - 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
6 from . import filtration_test
8 def load_tests(loader
, tests
, pattern
):
9 suite
= unittest
.TestSuite()
10 suite
.addTest(filtration_test
.suite
)
13 if __name__
== '__main__':