this.myHarness.check (s1.hasNextInt (), true, "first hasNextInt()");
this.myHarness.check (s1.nextInt (), 1, "nextInt()");
this.myHarness.check (s1.hasNextInt (), true, "hasNextInt()");
this.myHarness.check (s1.hasNextBoolean (), false, "hasNextBoolean()");
this.myHarness.check (s1.hasNextByte (), true, "hasNextByte()");
this.myHarness.check (s1.nextInt (), 2, "2. nextInt()");
this.myHarness.check (s1.hasNext (), true, "3. hasNext()");
this.myHarness.check (s1.hasNextBigInteger (), false,
"hasNextBigInteger()");
this.myHarness.check (s1.next (), "red", "3. next()");
this.myHarness.check (s1.next (), "blue", "4. next()");