}
public void testLayoutRSN() throws Pack200Exception {
AttributeLayout layout = new AttributeLayout("RSN",
AttributeLayout.CONTEXT_CLASS, "RSN", 1);
Segment segment = new TestSegment();
assertNull(layout.getValue(0, segment.getConstantPool()));
assertEquals("Eins", ((CPUTF8)layout.getValue(1, segment.getConstantPool())).underlyingString());
assertEquals("Zwei", ((CPUTF8)layout.getValue(2, segment.getConstantPool())).underlyingString());
}