Given a sequence Seq[Matcher[A]] I want to obtain a single Matcher[A] that succeeds when all matchers inside the sequence succeed.

Edit

The answer provided by myself seems a bit clumsy and in addition it would be nice if all failing matchers of the sequence produced a result

link|improve this question

79% accept rate
feedback

1 Answer

Ok, I've found a way:

(matchers: Seq[Matcher[A]]).reduce(_ and _)

Somehow I thought there has to be a different way, like writing _.sequence.

link|improve this answer
damn! 3 minutes, that was fast – Pablo Fernandez Oct 27 '11 at 14:11
I think my brain is close to exploding. I just can't see the red line in the use of this library. – ziggystar Oct 27 '11 at 14:33
Then don't use it, scala plays nice with JUnit too – Pablo Fernandez Oct 27 '11 at 14:40
The thing is as long as you use the provided matchers it works great. But somehow I'm not able to build new matchers by reusing the existing ones. Either I'm not clever enough or it doens't work well. I want to find out. – ziggystar Oct 27 '11 at 14:49
sorry can't help you there, I've never built one either – Pablo Fernandez Oct 27 '11 at 15:09
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.