Index: test/org/openstreetmap/josm/plugins/PluginExceptionTest.java
===================================================================
--- test/org/openstreetmap/josm/plugins/PluginExceptionTest.java	(revision 151)
+++ test/org/openstreetmap/josm/plugins/PluginExceptionTest.java	(revision 153)
@@ -7,5 +7,5 @@
 	public void testConstructorPassesExceptionParameterAndSetPluginName() {
 		RuntimeException barEx = new RuntimeException("bar");
-		PluginException e = new PluginException(new PluginProxy(new String(), "42"), "42", barEx);
+		PluginException e = new PluginException(new PluginProxy(new String(), null), "42", barEx);
 		assertEquals(barEx, e.getCause());
 		assertEquals("42", e.getName());
@@ -13,5 +13,5 @@
 
 	public void testMessageContainsThePluginName() {
-		PluginException e = new PluginException(new PluginProxy(new String(), "42"), "42", new RuntimeException());
+		PluginException e = new PluginException(new PluginProxy(new String(), null), "42", new RuntimeException());
 		assertTrue(e.getMessage().contains("42"));
 	}
Index: test/org/openstreetmap/josm/plugins/PluginLoaderTest.java
===================================================================
--- test/org/openstreetmap/josm/plugins/PluginLoaderTest.java	(revision 151)
+++ 	(revision )
@@ -1,35 +1,0 @@
-package org.openstreetmap.josm.plugins;
-
-import java.io.File;
-
-import junit.framework.TestCase;
-
-public class PluginLoaderTest extends TestCase {
-
-	public static class TestPlugin extends Plugin {
-		public TestPlugin() {
-	        super();
-        }
-	}
-
-	private PluginLoader loader;
-
-	@Override protected void setUp() throws Exception {
-		super.setUp();
-		loader = new PluginLoader();
-	}
-
-	public void testLoadPluginCallsStandardConstructor() throws Exception {
-		PluginProxy plugin = loader.loadPlugin(getClass().getName()+"$TestPlugin", new File("foo.jar"));
-		assertTrue(plugin.plugin instanceof TestPlugin);
-	}
-	
-	public void testLoadPluginLoadsAllClasses() throws Exception {
-		File classFile = new File(getClass().getResource("simple.jar").toURI());
-		
-		PluginProxy plugin = loader.loadPlugin("Simple", classFile);
-
-		assertNotNull(plugin.plugin);
-		assertEquals("simple", plugin.name);
-	}
-}
