assertTrue(notLike.match(noMatch1));
Artist match1 = new Artist();
match1.setArtistName("abcd");
assertTrue("Failed: " + like, like.match(match1));
assertFalse("Failed: " + notLike, notLike.match(match1));
Artist match2 = new Artist();
match2.setArtistName("ABcD");
assertTrue("Failed: " + like, like.match(match2));
assertFalse("Failed: " + notLike, notLike.match(match2));