Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
1913955a
Commit
1913955a
authored
Jul 14, 2017
by
pjvan_thof
Browse files
Fixing failing test
parent
1bc4e07b
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/VepNormalizerTest.scala
View file @
1913955a
...
...
@@ -163,12 +163,17 @@ class VepNormalizerTest extends TestNGSuite with MockitoSugar with Matchers {
checkItems
(
items
)
}
@Test
(
expectedExceptions
=
Array
(
classOf
[
TribbleException.MalformedFeatureFile
]))
def
testVCF3TribbleException
()
:
Unit
=
{}
@Test
def
testVCF3TribbleException
()
:
Unit
=
{
intercept
[
TribbleException.MalformedFeatureFile
]
{
new
VCFFileReader
(
vcf3
,
false
)
}
}
@Test
(
expectedExceptions
=
Array
(
classOf
[
IllegalArgumentException
]))
@Test
def
testNoCSQTagException
()
{
csqCheck
(
new
VCFFileReader
(
unvepped
,
false
).
getFileHeader
)
intercept
[
IllegalArgumentException
]
{
csqCheck
(
new
VCFFileReader
(
unvepped
,
false
).
getFileHeader
)
}
}
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment