Package com.l2client.test.junit

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

package com.l2client.test.junit;

import junit.framework.TestCase;

import com.l2client.app.Singleton;
import com.l2client.model.PartSet;

public class PartSetTest extends TestCase {

  public void testSelf() {

    Singleton.get().getPartManager().loadParts("megaset.test.csv");
    PartSet s = Singleton.get().getPartManager().getPart("halberd");
    assertEquals(4, s.getSize());
  }
}
TOP

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

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.