Skip to content

Commit

Permalink
issue-183: Fixed reported code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-todorov committed Jan 25, 2021
1 parent c6abda9 commit 8b098ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class MinioIntegrationTestAnnotationTest
class MinioIntegrationTestAnnotationTest
extends BaseAnnotationTest
{

@Test
public void testClassLevelAnnotation()
void testClassLevelAnnotation()
{
assertTrue(hasMinioAnnotation(MinioClassAnnotationIT.class));
assertTrue(hasMinioAnnotation(CombinedMinioS3IT.class));
Expand All @@ -24,7 +24,7 @@ public void testClassLevelAnnotation()
}

@Test
public void testMethodLevelAnnotation()
void testMethodLevelAnnotation()
throws NoSuchMethodException
{
assertTrue(hasMinioAnnotation(MinioMethodAnnotationIT.class, "testShouldExecuteBecauseOfMethodAnnotation"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;

public class S3IntegrationTestAnnotationTest
class S3IntegrationTestAnnotationTest
extends BaseAnnotationTest
{

@Test
public void testClassLevelAnnotation()
void testClassLevelAnnotation()
{
assertTrue(hasS3Annotation(S3ClassAnnotationIT.class));
assertTrue(hasS3Annotation(CombinedS3MinioIT.class));
Expand All @@ -23,7 +23,7 @@ public void testClassLevelAnnotation()
}

@Test
public void testMethodLevelAnnotation()
void testMethodLevelAnnotation()
throws NoSuchMethodException
{
assertTrue(hasS3Annotation(S3MethodAnnotationIT.class, "testShouldExecuteBecauseOfMethodAnnotation"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import static org.junit.jupiter.api.Assertions.assertNull;

@S3IntegrationTest
public class ToURLIT
class ToURLIT
{

private static final URI uriGlobal = EnvironmentBuilder.getS3URI(S3_GLOBAL_URI_IT);
Expand Down

0 comments on commit 8b098ed

Please sign in to comment.