1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-11 13:31:08 +01:00

Change JUnit API from 4 to 5 in smack-experimental

This commit is contained in:
Florian Schmaus 2019-05-07 18:51:22 +02:00
parent 505493d889
commit 95dbf5bb36
8 changed files with 20 additions and 20 deletions

View file

@ -16,11 +16,11 @@
*/
package org.jivesoftware.smackx.hashes;
import static junit.framework.TestCase.assertEquals;
import static junit.framework.TestCase.assertFalse;
import static junit.framework.TestCase.assertTrue;
import static org.jivesoftware.smackx.hashes.HashManager.ALGORITHM.SHA_256;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.jivesoftware.smack.test.util.SmackTestSuite;
import org.jivesoftware.smack.test.util.TestUtils;

View file

@ -16,7 +16,7 @@
*/
package org.jivesoftware.smackx.hashes;
import static junit.framework.TestCase.assertEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.jivesoftware.smack.test.util.SmackTestSuite;
import org.jivesoftware.smack.util.StringUtils;