Fixed imports on core JUnit tests to use Hamcrest matchers provided with Junit4

This commit is contained in:
str4d
2012-11-05 19:50:32 +00:00
parent 3cb4d35cee
commit 40d1507237
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
package net.i2p.client.naming;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
import junit.framework.TestCase;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import java.io.File;
import java.io.IOException;

View File

@@ -1,8 +1,8 @@
package net.i2p.client.naming;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
import junit.framework.TestCase;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import java.io.File;
import java.util.Collections;