}
public void testMatcherLine() throws Exception {
matcherOne.result = false;
matcherTwo.result = false;
final Document subject = new MockLocation("subject");
multiplexer.match(subject, LINE_ONE);
assertEquals("One line", 1, matcherOne.lines.size());
assertEquals("Same as line passed", LINE_ONE, matcherOne.lines.get(0));
assertEquals("One line", 1, matcherTwo.lines.size());
assertEquals("Same as line passed", LINE_ONE, matcherTwo.lines.get(0));