Don't unpack resource bundles when running tests.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@556 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2008-06-29 13:47:13 +00:00
parent adb7f3adce
commit 375f7fe977
6 changed files with 8 additions and 86 deletions
@@ -16,11 +16,11 @@ import com.jme.scene.shape.Box;
/**
* Tests the JME/AWT integration bits.
*/
public class JmeCanvasTest extends JmeCanvasApp
public class JmeCanvasTestApp extends JmeCanvasApp
{
public static void main (String[] args)
{
final JmeCanvasTest app = new JmeCanvasTest();
final JmeCanvasTestApp app = new JmeCanvasTestApp();
JFrame frame = new JFrame("JmeCanvasTest");
frame.getContentPane().add(app.getCanvas(), BorderLayout.CENTER);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
@@ -50,7 +50,7 @@ public class JmeCanvasTest extends JmeCanvasApp
_geom.updateRenderState();
}
protected JmeCanvasTest ()
protected JmeCanvasTestApp ()
{
super(800, 600);
}
@@ -27,7 +27,7 @@ public class JabberServer extends CrowdServer
super.init(injector);
// create a single location
_place = plreg.createPlace(new JabberConfig());
_place = _plreg.createPlace(new JabberConfig());
log.info("Created chat room " + _place.where() + ".");
}
@@ -24,7 +24,7 @@ import com.threerings.jme.sprite.LineSegmentPath;
/**
* Used for testing paths.
*/
public class PathTest extends JmeApp
public class PathTestApp extends JmeApp
{
protected void initRoot ()
{
@@ -136,7 +136,7 @@ public class PathTest extends JmeApp
public static void main (String[] args)
{
LoggingSystem.getLogger().setLevel(Level.OFF);
PathTest test = new PathTest();
PathTestApp test = new PathTestApp();
if (!test.init()) {
System.exit(-1);
}