Ignore:
Timestamp:
09/05/12 15:53:38 (12 years ago)
Author:
sherbold
Message:
  • updated QuestPlugin? API and implementing plug-ins to ensure that the internal representation is immutable from the outside.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-core-test/src/test/java/de/ugoe/cs/quest/plugin/PluginLoaderTest.java

    r766 r772  
    22 
    33import java.io.File; 
     4import java.util.Arrays; 
    45import java.util.Collection; 
    56 
     
    169170                assertNotNull(plugin); 
    170171                assertEquals("Mock Plugin", plugin.getTitle()); 
    171                 assertArrayEquals(new String[]{"de.ugoe.cs.quest.plugin.mock.commands"}, plugin.getCommandPackages()); 
     172                assertEquals(Arrays.asList(new String[]{"de.ugoe.cs.quest.plugin.mock.commands"}), plugin.getCommandPackages()); 
    172173        } 
    173174         
Note: See TracChangeset for help on using the changeset viewer.