Skip to content

Commit

Permalink
delete private in inject by codiga #3050
Browse files Browse the repository at this point in the history
  • Loading branch information
yurake committed Feb 15, 2023
1 parent 4fa067f commit 2bfcb8c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package webapp.tier.service;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.jupiter.api.Assertions.fail;
import static org.mockito.Mockito.when;
import static org.hamcrest.CoreMatchers.*;
import static org.hamcrest.MatcherAssert.*;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;

import java.security.NoSuchAlgorithmException;
import java.util.LinkedHashMap;
Expand All @@ -29,7 +28,7 @@
class MongodbServiceTest {

@Inject
private MongodbService mongosvc;
MongodbService mongosvc;

private String respbody = "message: Hello k8s-3tier-webapp with quarkus";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package webapp.tier.service;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import static org.hamcrest.Matchers.lessThanOrEqualTo;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.hamcrest.MatcherAssert.*;
import static org.hamcrest.Matchers.*;
import static org.junit.jupiter.api.Assertions.*;

import javax.inject.Inject;

Expand All @@ -16,7 +15,7 @@
class RandomServiceTest {

@Inject
private RandomService svc;
RandomService svc;

@Test
void testDeliverrandomCase0Error() throws Exception {
Expand Down

0 comments on commit 2bfcb8c

Please sign in to comment.