Skip to content
Snippets Groups Projects
Commit 0a316f4b authored by Berk Onat's avatar Berk Onat
Browse files

Fixed scala test settings

parent 760a3f86
No related branches found
No related tags found
No related merge requests found
......@@ -5,16 +5,16 @@ import org.specs2.mutable.Specification
object NAMDParserTests extends Specification {
"NAMDParserTest" >> {
"[tiny with 507 atoms] test with json-events" >> {
ParserRun.parse(NAMDParser, "parsers/gromacs/test/examples/tiny/tiny.log", "json-events") must_== ParseResult.ParseSuccess
ParserRun.parse(NAMDParser, "parsers/namd/test/examples/tiny/tiny.log", "json-events") must_== ParseResult.ParseSuccess
}
"[tiny with 507 atoms] test with json" >> {
ParserRun.parse(NAMDParser, "parsers/gromacs/test/examples/tiny/tiny.log", "json") must_== ParseResult.ParseSuccess
ParserRun.parse(NAMDParser, "parsers/namd/test/examples/tiny/tiny.log", "json") must_== ParseResult.ParseSuccess
}
"[apoa1-trajectory with 92224 atoms] test with json-events" >> {
ParserRun.parse(NAMDParser, "parsers/gromacs/test/examples/apoa1-trajectory/apoa1.log", "json-events") must_== ParseResult.ParseSuccess
ParserRun.parse(NAMDParser, "parsers/namd/test/examples/apoa1-trajectory/apoa1.log", "json-events") must_== ParseResult.ParseSuccess
}
"[apoa1-trajectory with 92224 atoms] test with json" >> {
ParserRun.parse(NAMDParser, "parsers/gromacs/test/examples/apoa1-trajectory/apoa1.log", "json") must_== ParseResult.ParseSuccess
ParserRun.parse(NAMDParser, "parsers/namd/test/examples/apoa1-trajectory/apoa1.log", "json") must_== ParseResult.ParseSuccess
}
}
}
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