""" Part of the tagit test suite. A copy of the license is provided with the project. Author: Matthias Baumgartner, 2022 """ # imports import unittest # bsfs imports # objects to test from bsfs.query.validator import Filter ## code ## class TestFilter(unittest.TestCase): def test_parse(self): raise NotImplementedError() # FIXME: subtests for individual functions ## main ## if __name__ == '__main__': unittest.main() ## EOF ##