}
public void testDiscsStartsWithBeatles1965()
{
int cnt = 0;
Disc d = new Disc();
d.setDTITLE("The Beatles*");
ObjectSet<Disc> discs = gtm.queryByExample(d);
for (Disc disc : discs) {
if (!disc.getDTITLE().startsWith("The Beatles"))
fail("Invalid DTITLE. Expected starts with 'The Beatles' but got " + disc.getDTITLE());