format code removing unused imports
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_prefix_codes.py
1 """ prefix-codes tests
2 """
3
4 import unittest
5
6 from openpower.test.prefix_codes.prefix_codes_cases import PrefixCodesCases
7 from openpower.test.runner import TestRunnerBase
8
9 # writing the test_caller invocation this way makes it work with pytest
10
11
12 class TestPrefixCodes(TestRunnerBase):
13 def __init__(self, test):
14 assert test == 'test'
15 super().__init__(PrefixCodesCases().test_data)
16
17 def test(self):
18 # dummy function to make unittest try to test this class
19 pass
20
21
22 if __name__ == "__main__":
23 unittest.main()