Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RegularExpressionTestUtil for testing regexes #1041

Merged
merged 11 commits into from
Jan 24, 2025
Prev Previous commit
Fixing error prone warnings
  • Loading branch information
ldhardy committed Jan 17, 2025
commit 294cad48b69001857740f1a19b604cff6ad7f70a
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
/**
* A utility class for testing regular expressions.
*/
public class RegularExpressionTestUtil {
protected static Logger logger = LoggerFactory.getLogger(RegularExpressionTestUtil.class);
public final class RegularExpressionTestUtil {
private static final Logger logger = LoggerFactory.getLogger(RegularExpressionTestUtil.class);

private RegularExpressionTestUtil() {}

/**
* A method to test a list of values that should and should not match a particular regular expression. One of the two
Expand Down
Loading