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
e119b397
Commit
e119b397
authored
Sep 08, 2015
by
Sander Bollen
Browse files
sort test
parent
9a5d5343
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/tools/VcfStatsTest.scala
View file @
e119b397
...
...
@@ -245,6 +245,17 @@ class VcfStatsTest extends TestNGSuite with Matchers {
@Test
def
testSortAnyAny
=
{
//stub
val
one
:
Any
=
1
val
two
:
Any
=
2
val
text
:
Any
=
"hello"
val
text2
:
Any
=
"goodbye"
sortAnyAny
(
one
,
two
)
shouldBe
true
sortAnyAny
(
two
,
one
)
shouldBe
false
sortAnyAny
(
text
,
text2
)
shouldBe
false
sortAnyAny
(
text2
,
text
)
shouldBe
true
sortAnyAny
(
one
,
text
)
shouldBe
true
sortAnyAny
(
text
,
one
)
shouldBe
false
}
@Test
...
...
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