Package com.artemis

Source Code of com.artemis.GWTArtemisTestSuite

package com.artemis;

import junit.framework.TestCase;

import com.google.gwt.junit.client.GWTTestCase;
import com.google.gwt.junit.tools.GWTTestSuite;

public class GWTArtemisTestSuite extends TestCase {
  @SuppressWarnings("unchecked")
  private static Class<? extends GWTTestCase>[] tests = new Class[] {
    WorldTest.class,
    FactoryWireTest.class,
    EntityFactoryTest.class,
    ExtendedEntityFactoryTest.class
  };

  public static GWTTestSuite suite() {
    GWTTestSuite suite = new GWTTestSuite("artemis-odb gwt tests");
    for (Class<? extends TestCase> tc : tests) {
      suite.addTestSuite(tc);
    }
    return suite;
  }
}
TOP

Related Classes of com.artemis.GWTArtemisTestSuite

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.