@Test
public void noMatch() throws Exception {
BufferedReader in = Resources.getBufferedResourceReader("elements/Source.java");
String line = in.readLine();
boolean result = false;
final Document subject = new MockLocation("subject");
while (line != null) {
result = license.match(subject, line);
line = in.readLine();
}
assertFalse("OASIS license should not be matched", result);