public class TestAnimLoad extends TestCase {
public void testSelf()
{
PartSetManager man = Singleton.get().getPartManager();
man.loadParts("megaset.csv");
// create the geometry and attach it
// AssetManager assetMan = new DesktopAssetManager(true);
// AnimData aData = (AnimData) assetMan.loadAsset("ready_idle.anim.xml");
PartSet p = man.getPart("anim");
assertNotNull("No animations found in megaset !?!", p);
PartSet d = p.getPart("MTW2_Sword");
assertNotNull("MTW2_Sword animation not found in megaset !?!", d);
AnimationManager.get().precacheAnimations(d);