Repository: commons-lang
Updated Branches:
  refs/heads/master 3e44d2634 -> 6ec01a633


LANG-1416: Update ValidateTest to JUnit 5 API


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/2bcf86d8
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/2bcf86d8
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/2bcf86d8

Branch: refs/heads/master
Commit: 2bcf86d8af125b45d39bd1d43b8375911c551d78
Parents: 83b472b
Author: Benedikt Ritter <brit...@apache.org>
Authored: Tue Sep 4 11:30:39 2018 +0200
Committer: Benedikt Ritter <brit...@apache.org>
Committed: Tue Sep 4 15:08:37 2018 +0200

----------------------------------------------------------------------
 .../java/org/apache/commons/lang3/ValidateTest.java   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/2bcf86d8/src/test/java/org/apache/commons/lang3/ValidateTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/lang3/ValidateTest.java 
b/src/test/java/org/apache/commons/lang3/ValidateTest.java
index e5d077a..853f7e8 100644
--- a/src/test/java/org/apache/commons/lang3/ValidateTest.java
+++ b/src/test/java/org/apache/commons/lang3/ValidateTest.java
@@ -18,12 +18,7 @@
  */
 package org.apache.commons.lang3;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertSame;
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
+import org.junit.jupiter.api.Test;
 
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Modifier;
@@ -35,7 +30,12 @@ import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertSame;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.junit.jupiter.api.Assertions.fail;
 
 /**
  * Unit tests {@link org.apache.commons.lang3.Validate}.

Reply via email to