Fixes #308869 (Update test suite to JUnit4 - Module jetty-xml).
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1598 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
66fe084dc9
commit
e094c3064c
|
@ -4,17 +4,21 @@
|
|||
// All rights reserved. This program and the accompanying materials
|
||||
// are made available under the terms of the Eclipse Public License v1.0
|
||||
// and Apache License v2.0 which accompanies this distribution.
|
||||
// The Eclipse Public License is available at
|
||||
// The Eclipse Public License is available at
|
||||
// http://www.eclipse.org/legal/epl-v10.html
|
||||
// The Apache License v2.0 is available at
|
||||
// http://www.opensource.org/licenses/apache2.0.php
|
||||
// You may elect to redistribute this code under either of these licenses.
|
||||
// You may elect to redistribute this code under either of these licenses.
|
||||
// ========================================================================
|
||||
|
||||
package org.eclipse.jetty.xml;import java.net.URL;
|
||||
package org.eclipse.jetty.xml;
|
||||
|
||||
import java.net.URL;
|
||||
import java.util.HashMap;
|
||||
|
||||
import org.junit.Ignore;
|
||||
|
||||
@Ignore
|
||||
public class TestConfiguration extends HashMap
|
||||
{
|
||||
public static int VALUE=77;
|
||||
|
|
|
@ -25,7 +25,7 @@ import static org.junit.Assert.assertTrue;
|
|||
public class XmlConfigurationTest
|
||||
{
|
||||
@Test
|
||||
public static void testXmlParser() throws Exception
|
||||
public void testXmlParser() throws Exception
|
||||
{
|
||||
XmlParser parser = new XmlParser();
|
||||
|
||||
|
@ -55,7 +55,7 @@ public class XmlConfigurationTest
|
|||
}
|
||||
|
||||
@Test
|
||||
public static void testXmlConfiguration() throws Exception
|
||||
public void testXmlConfiguration() throws Exception
|
||||
{
|
||||
Map properties = new HashMap();
|
||||
properties.put("whatever", "xxx");
|
||||
|
|
Loading…
Reference in New Issue