Changeset 153 in josm for test/org/openstreetmap


Ignore:
Timestamp:
2006-10-07T18:14:07+02:00 (18 years ago)
Author:
imi
Message:
  • added possibility to create new download tasks (download data types).
  • removed WMS stuff (now available as landsat - plugin)
  • updated translation files
Location:
test/org/openstreetmap/josm/plugins
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • test/org/openstreetmap/josm/plugins/PluginExceptionTest.java

    r149 r153  
    77        public void testConstructorPassesExceptionParameterAndSetPluginName() {
    88                RuntimeException barEx = new RuntimeException("bar");
    9                 PluginException e = new PluginException(new PluginProxy(new String(), "42"), "42", barEx);
     9                PluginException e = new PluginException(new PluginProxy(new String(), null), "42", barEx);
    1010                assertEquals(barEx, e.getCause());
    1111                assertEquals("42", e.getName());
     
    1313
    1414        public void testMessageContainsThePluginName() {
    15                 PluginException e = new PluginException(new PluginProxy(new String(), "42"), "42", new RuntimeException());
     15                PluginException e = new PluginException(new PluginProxy(new String(), null), "42", new RuntimeException());
    1616                assertTrue(e.getMessage().contains("42"));
    1717        }
Note: See TracChangeset for help on using the changeset viewer.