Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Move to junit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Jun 27, 2020
1 parent c33d516 commit 2344e3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import com.amazonaws.AmazonWebServiceClient;
import com.amazonaws.services.simplesystemsmanagement.AWSSimpleSystemsManagementClient;
import org.junit.Test;
import org.junit.jupiter.api.Test;

import org.springframework.cloud.aws.paramstore.AwsParamStoreProperties;
import org.springframework.util.ReflectionUtils;
Expand All @@ -32,12 +32,12 @@
*
* @author Matej Nedic
*/
public class AwsParamStoreBootstrapConfigurationTest {
class AwsParamStoreBootstrapConfigurationTest {

AwsParamStoreBootstrapConfiguration bootstrapConfig = new AwsParamStoreBootstrapConfiguration();

@Test
public void testWithStaticRegion() {
void testWithStaticRegion() {
String region = "us-east-2";
AwsParamStoreProperties awsParamStoreProperties = new AwsParamStoreProperties();
awsParamStoreProperties.setRegion(region);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@

import com.amazonaws.AmazonWebServiceClient;
import com.amazonaws.services.secretsmanager.AWSSecretsManagerClient;
import org.junit.Test;
import org.junit.jupiter.api.Test;

import org.springframework.cloud.aws.secretsmanager.AwsSecretsManagerProperties;
import org.springframework.util.ReflectionUtils;

import static org.assertj.core.api.Assertions.assertThat;

public class AwsSecretsManagerBootstrapConfigurationTest {
class AwsSecretsManagerBootstrapConfigurationTest {

AwsSecretsManagerBootstrapConfiguration bootstrapConfig = new AwsSecretsManagerBootstrapConfiguration();

@Test
public void testWithStaticRegion() {
void testWithStaticRegion() {
String region = "us-east-2";
AwsSecretsManagerProperties awsParamStoreProperties = new AwsSecretsManagerProperties();
awsParamStoreProperties.setRegion(region);
Expand Down

0 comments on commit 2344e3a

Please sign in to comment.