Package com.l2client.test.junit

Source Code of com.l2client.test.junit.Assembler2Test

package com.l2client.test.junit;

import java.net.MalformedURLException;

import junit.framework.TestCase;

import com.jme3.scene.Node;
import com.l2client.app.Assembler2;
import com.l2client.app.Singleton;

public class Assembler2Test extends TestCase {

  public void testSelf() throws MalformedURLException{
    Singleton.get().getPartManager().loadParts("megaset.test.csv");

    Node node = Assembler2.getModel("halberd");
   
    assertNotNull(node);
  }
}
TOP

Related Classes of com.l2client.test.junit.Assembler2Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.