Skip to content

Commit

Permalink
Refactor unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
sashirestela committed Jan 22, 2025
1 parent b36aef6 commit cac9e18
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ interface UserService {
@Getter
@ToString
@EqualsAndHashCode
static class Demo {
class Demo {

private Integer id;

Expand All @@ -177,7 +177,7 @@ static class Demo {
@NoArgsConstructor
@AllArgsConstructor
@Getter
static class RequestDemo {
class RequestDemo {

private String prefix;

Expand All @@ -188,7 +188,7 @@ static class RequestDemo {
@NoArgsConstructor
@AllArgsConstructor
@Getter
static class Generic<T> {
class Generic<T> {

private Integer id;

Expand All @@ -198,7 +198,7 @@ static class Generic<T> {

@Getter
@AllArgsConstructor
static class MultipartClass {
class MultipartClass {

private java.nio.file.Path file;

Expand All @@ -216,7 +216,7 @@ static class MultipartClass {
@AllArgsConstructor
@Builder
@Data
static class User {
class User {

private Integer id;
private String name;
Expand Down

0 comments on commit cac9e18

Please sign in to comment.