Skip to content
Snippets Groups Projects
Commit f1a36fc9 authored by Brandon Hewer's avatar Brandon Hewer
Browse files

Add test for manual dRange list

Refs #20763
parent 7fd9bb71
No related merge requests found
...@@ -22,9 +22,9 @@ class OSIRISDiffractionReductionTest(unittest.TestCase): ...@@ -22,9 +22,9 @@ class OSIRISDiffractionReductionTest(unittest.TestCase):
self.assertEqual(wks.getAxis(0).getUnit().unitID(), 'dSpacing') self.assertEqual(wks.getAxis(0).getUnit().unitID(), 'dSpacing')
self.assertEqual(wks.getNumberHistograms(), 1) self.assertEqual(wks.getNumberHistograms(), 1)
def test_reduction_with_manual_drange_completes(self): def test_reduction_with_single_manual_drange_completes(self):
""" """
Test to ensure reduction with manual dRange selection completes. Test to ensure reduction with single manual dRange selection completes.
The run here is for dRange 3. The run here is for dRange 3.
""" """
...@@ -40,6 +40,23 @@ class OSIRISDiffractionReductionTest(unittest.TestCase): ...@@ -40,6 +40,23 @@ class OSIRISDiffractionReductionTest(unittest.TestCase):
self.assertEqual(wks.getAxis(0).getUnit().unitID(), 'dSpacing') self.assertEqual(wks.getAxis(0).getUnit().unitID(), 'dSpacing')
self.assertEqual(wks.getNumberHistograms(), 1) self.assertEqual(wks.getNumberHistograms(), 1)
def test_reduction_with_manual_range_list(self):
"""
Test to ensure reduction with manual dRange list selection completes.
The run here is for dRange 3-4.
"""
wks = OSIRISDiffractionReduction(Sample=['OSI10203.raw', 'OSI10204.raw'],
CalFile='osiris_041_RES10.cal',
Vanadium=['OSI10156.raw', 'OSI10157.raw'],
SpectraMin=3,
SpectraMax=361,
DetectDRange=False,
DRange="3-4")
self.assertTrue(isinstance(wks, MatrixWorkspace), 'Result workspace should be a matrix workspace.')
self.assertEqual(wks.getAxis(0).getUnit().unitID(), 'dSpacing')
self.assertEqual(wks.getNumberHistograms(), 1)
def test_reduction_with_can_subtraction(self): def test_reduction_with_can_subtraction(self):
""" """
Tests reduction after subtraction of an empty can. Tests reduction after subtraction of an empty can.
......
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