You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove public modifiers from test classes and methods (JUnit5 package-private scope)
- Remove unused imports (ResourceNotFoundException, Collections)
- Remove unnecessary E2E test method for better scope focus
Copy file name to clipboardExpand all lines: powertools-idempotency/powertools-idempotency-dynamodb/src/test/java/software/amazon/lambda/powertools/idempotency/persistence/dynamodb/DynamoDBConfig.java
Copy file name to clipboardExpand all lines: powertools-idempotency/powertools-idempotency-dynamodb/src/test/java/software/amazon/lambda/powertools/idempotency/persistence/dynamodb/DynamoDBPersistenceStoreTest.java
Copy file name to clipboardExpand all lines: powertools-idempotency/powertools-idempotency-dynamodb/src/test/java/software/amazon/lambda/powertools/idempotency/persistence/dynamodb/IdempotencyTest.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
importjava.util.HashMap;
43
43
importjava.util.Map;
44
44
45
-
publicclassIdempotencyTest {
45
+
classIdempotencyTest {
46
46
47
47
@Mock
48
48
privateContextcontext;
@@ -56,7 +56,7 @@ void setUp() {
56
56
}
57
57
58
58
@Test
59
-
publicvoidendToEndTest() {
59
+
voidendToEndTest() {
60
60
// For this test, we'll simplify and just verify that the function works with mocks
61
61
// The important part is that our new mocking approach doesn't break existing functionality
0 commit comments