migrate to junit5 (#5572)

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
Sally MacFarlane
2023-06-09 15:01:47 +10:00
committed by GitHub
parent c3ab8e017d
commit 46009213b1
3 changed files with 2 additions and 3 deletions

View File

@@ -37,7 +37,6 @@ dependencies {
implementation 'io.tmio:tuweni-bytes'
implementation 'io.tmio:tuweni-units'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'

View File

@@ -16,7 +16,7 @@ package org.hyperledger.besu.datatypes;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.Test;
import org.junit.jupiter.api.Test;
public class HashTest {

View File

@@ -19,7 +19,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import java.math.BigInteger;
import java.util.Arrays;
import org.junit.Test;
import org.junit.jupiter.api.Test;
public class WeiTest {