myHarness.check(s.radix(), 16, "radix was not set to 16");
myHarness.check(s.hasNextByte (), "hasNextByte()");
myHarness.check(s.nextByte(), 95, "nextByte is 95");
myHarness.check(s.hasNextShort(), "hasNextShort()");
myHarness.check(s.nextShort(), 32767, "nextShort is 32767");
myHarness.check(s.hasNextInt(), "hasNextInt()");
myHarness.check(s.nextInt(), 1329545071, "nextInt is 1329545071");
myHarness.check(s.hasNextLong(), "hasNextLong()");
myHarness.check(s.nextLong(), 69540603232238L, "nextLong is 69540603232238");
myHarness.check(s.hasNextBigInteger(), "hasNextBigInteger()");