specs2 support is great! But...
... I'm sticking with junit/@Test due to lack of working breakpoints. Even the first example from specs2 breakpoints on
the must lines (indicated with 'x') don't break. Sooo close! Nevertheless, all you scala plugin developers are my heros.
Thank you.
"The 'Hello world' string" should {
"contain 11 characters" in {
x "Hello world" must have size(11)
}
"start with 'Hello'" in {
x "Hello world" must startWith("Hello")
}
"end with 'world'" in {
x "Hello world" must endWith("world")
}
}
请先登录再写评论。
I have this problem, too. Breakpoints on neither Specs nor Specs2 tests don't work.
It's fixed now.
Best regards,
Alexander Podkhalyuzin.