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