1# Copyright (C) 2018 and later: Unicode, Inc. and others.
2# License & terms of use: http://www.unicode.org/copyright.html
3
4import unittest
5
6from . import filtration_test
7
8def load_tests(loader, tests, pattern):
9    suite = unittest.TestSuite()
10    suite.addTest(filtration_test.suite)
11    return suite
12
13if __name__ == '__main__':
14    unittest.main()
15