fix some typos
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_fptrans.py
1 """ fptrans tests
2 """
3
4 import unittest
5 from openpower.test.runner import TestRunnerBase
6 from openpower.test.fptrans.fptrans_cases import FPTransCases
7
8 # writing the test_caller invocation this way makes it work with pytest
9
10
11 class TestFPTrans(TestRunnerBase):
12 def __init__(self, test):
13 assert test == 'test'
14 super().__init__(FPTransCases().test_data, fp=True)
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()