Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
f1a36fc9
Commit
f1a36fc9
authored
7 years ago
by
Brandon Hewer
Browse files
Options
Downloads
Patches
Plain Diff
Add test for manual dRange list
Refs #20763
parent
7fd9bb71
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Framework/PythonInterface/test/python/plugins/algorithms/WorkflowAlgorithms/OSIRISDiffractionReductionTest.py
+19
-2
19 additions, 2 deletions
...thms/WorkflowAlgorithms/OSIRISDiffractionReductionTest.py
with
19 additions
and
2 deletions
Framework/PythonInterface/test/python/plugins/algorithms/WorkflowAlgorithms/OSIRISDiffractionReductionTest.py
+
19
−
2
View file @
f1a36fc9
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment