class MARIReductionSum(ISISDirectInelasticReduction):

    def __init__(self):

        ISISDirectInelasticReduction.__init__(self)
        from ISIS_MariReduction import MARIReductionSum

        self.red = MARIReductionSum()
        self.red.def_advanced_properties()
        self.red.def_main_properties()

    def runTest(self):
        """Defines the workflow for the test
        It verifies operation on summing two files on demand. No absolute units
        """
        #pylint: disable=unused-variable
        outWS=self.red.reduce()
        #outWS*=1.00001556766686

    def get_result_workspace(self):
        """Returns the result workspace to be checked"""
        return "outWS"

    def get_reference_file(self):
        return "MARIReductionSum.nxs"