format code removing unused imports
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_fptrans.py
1 """ fptrans tests
2 """
3
4 import unittest
5
6 from openpower.test.fptrans.fptrans_cases import FPTransCases
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 TestFPTrans(TestRunnerBase):
13 def __init__(self, test):
14 assert test == 'test'
15 super().__init__(FPTransCases().test_data, fp=True)
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()