Skip to content

Commit

Permalink
Migrate tests in regexp package
Browse files Browse the repository at this point in the history
  • Loading branch information
georgestoupis committed Oct 7, 2020
1 parent a7c1f39 commit b2d666d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package org.everit.json.schema.regexp;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;

import java.util.Optional;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import java.util.regex.Pattern;

import nl.jqno.equalsverifier.EqualsVerifier;
import nl.jqno.equalsverifier.Warning;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertSame;

public class JavaUtilRegexpTest {

static final String PATTERN = "^aa.*b$";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
package org.everit.json.schema.regexp;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertSame;

import java.util.Optional;

import org.junit.Test;

import com.google.re2j.Pattern;

import nl.jqno.equalsverifier.EqualsVerifier;
import nl.jqno.equalsverifier.Warning;
import org.junit.jupiter.api.Test;

public class RE2JRegexpTest {

Expand Down

0 comments on commit b2d666d

Please sign in to comment.