Ignore:
Timestamp:
2014-08-04T02:45:06+02:00 (11 years ago)
Author:
donvip
Message:

[josm_plugins] support for unit tests

Location:
applications/editors/josm/plugins/wikipedia
Files:
2 added
1 deleted
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wikipedia/.classpath

    r30416 r30550  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
     4        <classpathentry kind="src" path="test/unit"/>
    45        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    56        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
     7        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
    68        <classpathentry kind="output" path="bin"/>
    79</classpath>
  • applications/editors/josm/plugins/wikipedia/test

    • Property svn:externals set to
  • applications/editors/josm/plugins/wikipedia/test/unit/org/wikipedia/WikipediaAppTest.java

    r30448 r30550  
    1212import java.util.List;
    1313
     14import static org.hamcrest.CoreMatchers.hasItem;
    1415import static org.hamcrest.CoreMatchers.is;
    1516import static org.hamcrest.CoreMatchers.nullValue;
    1617import static org.junit.Assert.assertThat;
    1718import static org.junit.Assert.assertTrue;
    18 import static org.junit.matchers.JUnitMatchers.hasItem;
    1919
    2020public class WikipediaAppTest {
    2121
    2222    @Test
    23     @SuppressWarnings("unchecked")
    2423    public void testPartitionList() {
    2524        assertThat(
Note: See TracChangeset for help on using the changeset viewer.