Changeset 1098 for trunk/autoquest-plugin-core-test/src/test/java/de/ugoe
- Timestamp:
- 02/20/13 12:00:36 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-core-test/src/test/java/de/ugoe/cs/autoquest/plugin/PluginLoaderTest.java
r929 r1098 56 56 public void testCheckNameConformity_1() throws Exception { 57 57 PluginLoader loader = new PluginLoader(new File(".")); 58 String filename = " quest-plugin-jfc-1.0.jar";58 String filename = "autoquest-plugin-jfc-1.0.jar"; 59 59 boolean expected = true; 60 60 … … 67 67 public void testCheckNameConformity_2() throws Exception { 68 68 PluginLoader loader = new PluginLoader(new File(".")); 69 String filename = " quest-plugin-jf-c-1.0.jar";69 String filename = "autoquest-plugin-jf-c-1.0.jar"; 70 70 boolean expected = false; 71 71 … … 78 78 public void testCheckNameConformity_3() throws Exception { 79 79 PluginLoader loader = new PluginLoader(new File(".")); 80 String filename = " quest-plugin-jfc.jar";80 String filename = "autoquest-plugin-jfc.jar"; 81 81 boolean expected = false; 82 82 … … 89 89 public void testCheckNameConformity_4() throws Exception { 90 90 PluginLoader loader = new PluginLoader(new File(".")); 91 String filename = " quest-plugi-jfc-1.0.jar";91 String filename = "autoquest-plugi-jfc-1.0.jar"; 92 92 boolean expected = false; 93 93 … … 100 100 public void testCheckNameConformity_5() throws Exception { 101 101 PluginLoader loader = new PluginLoader(new File(".")); 102 String filename = " quest-pluginjfc-1.0.jar";102 String filename = "autoquest-pluginjfc-1.0.jar"; 103 103 boolean expected = false; 104 104 … … 111 111 public void testCheckNameConformity_6() throws Exception { 112 112 PluginLoader loader = new PluginLoader(new File(".")); 113 String filename = " quest-plugin-jfc-1-0.jar";113 String filename = "autoquest-plugin-jfc-1-0.jar"; 114 114 boolean expected = false; 115 115
Note: See TracChangeset
for help on using the changeset viewer.