assertTrue(notLike.match(noMatch1));
Artist noMatch2 = new Artist();
noMatch2.setArtistName("abc123d");
assertFalse("Failed: " + like, like.match(noMatch2));
assertTrue("Failed: " + notLike, notLike.match(noMatch2));
Artist match = new Artist();
match.setArtistName("abcXd");
assertTrue("Failed: " + like, like.match(match));
assertFalse("Failed: " + notLike, notLike.match(match));