Skip to content

Commit

Permalink
Update MyBatisItemRepositoryTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
darmalovan committed Jan 10, 2024
1 parent dad5a6c commit a1706c1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import io.spring.infrastructure.repository.MyBatisUserRepository;
import java.util.Arrays;
import java.util.Optional;
import java.util.Random;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand All @@ -26,6 +27,7 @@ public class MyBatisItemRepositoryTest extends DbTestBase {

@BeforeEach
public void setUp() {
Random random = new Random();
int randomNumber = random.nextInt();
User user =
new User(
Expand Down

0 comments on commit a1706c1

Please sign in to comment.