Skip to content

Commit

Permalink
Replace JUnitMatchers with CoreMatchers
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Jul 15, 2012
1 parent 620ccfd commit a68b42c
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,5 +1,6 @@
package org.junit.tests.experimental.rules;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
Expand All @@ -8,14 +9,13 @@
import static org.junit.experimental.results.PrintableResult.testResult;
import static org.junit.experimental.results.ResultMatchers.hasSingleFailureContaining;
import static org.junit.experimental.results.ResultMatchers.isSuccessful;
import static org.junit.matchers.JUnitMatchers.containsString;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestRule;
import org.junit.rules.MethodRule;
import org.junit.rules.TestName;
import org.junit.rules.TestRule;
import org.junit.rules.TestWatchman;
import org.junit.runner.Description;
import org.junit.runner.JUnitCore;
Expand Down

0 comments on commit a68b42c

Please sign in to comment.