int comp=str.compareTo(str2);
assert comp < 0;
}
public void testHashcode() {
AsciiString str=new AsciiString("hello"), str2=new AsciiString("hello");
assert str.hashCode() == str2.hashCode();
str2=new AsciiString("hello world");
assert str.hashCode() != str2.hashCode();
Map<AsciiString,Integer> map=new HashMap<AsciiString,Integer>(5);
map.put(new AsciiString("a"), 1);
assert map.get(new AsciiString("a")) == 1;
map.put(new AsciiString("b"), 2);
assert map.get(new AsciiString("b")) == 2;
map.put(new AsciiString("a"), 2);
assert map.get(new AsciiString("a")) == 2;
}