Skip to content
Snippets Groups Projects
Commit 4e70d0d0 authored by Raquel Alvarez Banos's avatar Raquel Alvarez Banos
Browse files

Re #6252 Add system test

parent 4967c264
No related branches found
No related tags found
No related merge requests found
#pylint: disable=no-init
import stresstesting
from mantid.simpleapi import *
class CalMuonDeadTimeTest(stresstesting.MantidStressTest):
'''Tests the StepScan workflow algorithm'''
def runTest(self):
Load(Filename='EMU30604.nxs',OutputWorkspace='EMU30604')
CalMuonDeadTime(InputWorkspace='EMU30604',
DeadTimeTable='deadTable',
FirstGoodData=0.5,
LastGoodData=10,
DataFitted='fitTable')
GroupWorkspaces(InputWorkspaces='deadTable,fitTable',
OutputWorkspace='EMUCalMuonDeadTime')
def validate(self):
return 'EMUCalMuonDeadTime','EMUCalMuonDeadTime.nxs'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment