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
7001fd6e
Commit
7001fd6e
authored
8 years ago
by
Krzysztof Dymkowski
Browse files
Options
Downloads
Patches
Plain Diff
Change xtest to test.
parent
89a14480
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Framework/PythonInterface/test/python/plugins/algorithms/AbinsBasicTest.py
+5
-5
5 additions, 5 deletions
...nterface/test/python/plugins/algorithms/AbinsBasicTest.py
with
5 additions
and
5 deletions
Framework/PythonInterface/test/python/plugins/algorithms/AbinsBasicTest.py
+
5
−
5
View file @
7001fd6e
...
...
@@ -59,7 +59,7 @@ class AbinsBasicTest(unittest.TestCase):
"
squaricn_scale
"
,
"
benzene_exp
"
])
mtd
.
clear
()
def
x
test_wrong_input
(
self
):
def
test_wrong_input
(
self
):
"""
Test if the correct behaviour of algorithm in case input is not valid
"""
# invalid CASTEP file missing: Number of branches 6 in the header file
...
...
@@ -91,14 +91,14 @@ class AbinsBasicTest(unittest.TestCase):
OutputWorkspace
=
self
.
_workspace_name
)
# test if intermediate results are consistent
def
x
test_non_unique_atoms
(
self
):
def
test_non_unique_atoms
(
self
):
"""
Test scenario in which a user specifies non unique atoms (for example in squaricn that would be
"
C,C,H
"
).
In that case Abins should terminate and print a meaningful message.
"""
self
.
assertRaises
(
RuntimeError
,
Abins
,
PhononFile
=
self
.
_squaricn
+
"
.phonon
"
,
Atoms
=
"
C,C,H
"
,
OutputWorkspace
=
self
.
_workspace_name
)
def
x
test_non_existing_atoms
(
self
):
def
test_non_existing_atoms
(
self
):
"""
Test scenario in which a user requests to create workspaces for atoms which do not exist in the system.
In that case Abins should terminate and give a user a meaningful message about wrong atoms to analyse.
"""
...
...
@@ -106,7 +106,7 @@ class AbinsBasicTest(unittest.TestCase):
self
.
assertRaises
(
RuntimeError
,
Abins
,
PhononFile
=
self
.
_squaricn
+
"
.phonon
"
,
Atoms
=
"
N
"
,
OutputWorkspace
=
self
.
_workspace_name
)
def
x
test_scale
(
self
):
def
test_scale
(
self
):
"""
Test if scaling is correct.
@return:
...
...
@@ -140,7 +140,7 @@ class AbinsBasicTest(unittest.TestCase):
(
result
,
messages
)
=
CompareWorkspaces
(
wrk
,
ref
,
Tolerance
=
self
.
_tolerance
)
self
.
assertEqual
(
result
,
True
)
def
x
test_exp
(
self
):
def
test_exp
(
self
):
"""
Tests if experimental data is loaded correctly.
@return:
...
...
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