Skip to content
Snippets Groups Projects
Commit 76b770a7 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fixed unit tests

parent c22fdf5b
No related branches found
No related tags found
No related merge requests found
......@@ -59,11 +59,9 @@ class ValidateFastqTest extends TestNGSuite with Matchers {
@Test
def testGetPossibleEncodingsFail: Unit = {
intercept[IllegalStateException] {
ValidateFastq.minQual = Some('!')
ValidateFastq.maxQual = Some('h')
ValidateFastq.getPossibleEncodings
}
ValidateFastq.minQual = Some('!')
ValidateFastq.maxQual = Some('h')
ValidateFastq.getPossibleEncodings shouldBe Nil
}
@Test
......@@ -71,20 +69,25 @@ class ValidateFastqTest extends TestNGSuite with Matchers {
ValidateFastq.minQual = None
ValidateFastq.maxQual = None
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "AAAA"))
ValidateFastq.getPossibleEncodings should not be Nil
intercept[IllegalStateException] {
ValidateFastq.minQual = None
ValidateFastq.maxQual = None
ValidateFastq.minQual = None
ValidateFastq.maxQual = None
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "A!hA"))
}
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "A!hA"))
ValidateFastq.getPossibleEncodings shouldBe Nil
ValidateFastq.minQual = None
ValidateFastq.maxQual = None
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "hhhh"))
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "!!!!"))
ValidateFastq.getPossibleEncodings shouldBe Nil
intercept[IllegalStateException] {
ValidateFastq.minQual = None
ValidateFastq.maxQual = None
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "hhhh"))
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "!!!!"))
ValidateFastq.checkQualEncoding(new FastqRecord("read_1", "ATCG", "", "!! !!"))
}
}
......
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