* @author Travis Ferguson
*
*/
public class TestChunkData extends TestCase {
public void testChunkCreate() {
StringChunk chunk = new StringChunk(0x0200);
TestCase.assertEquals("__substg1.0_0200001E", chunk.getEntryName());
/* test the lower and upper limits of the chunk ids */
chunk = new StringChunk(0x0000);
TestCase.assertEquals("__substg1.0_0000001E", chunk.getEntryName());
chunk = new StringChunk(0xFFFF);
TestCase.assertEquals("__substg1.0_FFFF001E", chunk.getEntryName());
}