}
public void testLoad() throws Exception {
PartLoader pl = new PartLoader( "<!--part-begin:", "-->", "<!--part-end:", "-->" );
File f = FileUtil.findFile( "org/jostraca/resource/test/partloader.txt" );
String foo = pl.load( f, "foo" );
assertEquals( 5, foo.length() );
String bar = pl.load( f, "bar" );
assertEquals( 53, bar.length() );
}