10 from openpower
.test
.alu
.alu_cases
import ALUTestCase
11 from openpower
.test
.runner
import TestRunnerBase
13 # writing the test_caller invocation this way makes it work with pytest
16 class TestALU(TestRunnerBase
):
17 def __init__(self
, test
):
19 super().__init
__(ALUTestCase().test_data
)
22 # dummy function to make unittest try to test this class
26 if __name__
== "__main__":