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

Migrate BFT tests to junit 5 #6350

Merged
merged 14 commits into from
Jan 6, 2024
Prev Previous commit
Next Next commit
fixed parameterization method
Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
  • Loading branch information
macfarla committed Jan 5, 2024
commit 2140960e42bbe58f208e48951bbe1432cfae8fcb
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ public static Stream<Arguments> getFactories() {
Arguments.of(
"ibft2",
new BftAcceptanceTestParameterization(
BesuNodeFactory::createIbft2Node, BesuNodeFactory::createIbft2NodeWithValidators),
Arguments.of(
"qbft",
new BftAcceptanceTestParameterization(
BesuNodeFactory::createQbftNode,
BesuNodeFactory::createQbftNodeWithValidators))));
BesuNodeFactory::createIbft2Node, BesuNodeFactory::createIbft2NodeWithValidators)),
Arguments.of(
"qbft",
new BftAcceptanceTestParameterization(
BesuNodeFactory::createQbftNode, BesuNodeFactory::createQbftNodeWithValidators)));
}

@FunctionalInterface
Expand Down
Loading