1 package org.columba.core.plugin; 19 20 import java.io.File ; 21 22 import junit.framework.TestCase; 23 24 import org.columba.api.plugin.IPluginManager; 25 import org.columba.core.io.DiskIO; 26 27 31 public class PluginManagerTest extends TestCase { 32 33 private File file; 34 35 38 protected void setUp() throws Exception { 39 file = new File ("test_config"); 41 file.mkdir(); 42 43 } 44 45 48 protected void tearDown() throws Exception { 49 DiskIO.deleteDirectory(file); 51 } 52 53 public void test() { 54 IPluginManager manager = PluginManager.getInstance(); 55 manager.initExternalPlugins(); 56 } 57 58 } | Popular Tags |