Skip to content

Commit

Permalink
fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduzz committed Oct 1, 2024
1 parent a7d9ae3 commit d739322
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package com.fjb.customer;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@Slf4j
@SpringBootTest
class CustomerApplicationTests {

@Test
void contextLoads() {
log.info("Just test");
}

}
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package com.fjb.inventory;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@Slf4j
@SpringBootTest
class InventoryApplicationTests {

@Test
void contextLoads() {
log.info("Just test");
}

}
3 changes: 3 additions & 0 deletions order/src/test/java/com/fjb/order/OrderApplicationTests.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package com.fjb.order;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@Slf4j
@SpringBootTest
class OrderApplicationTests {

@Test
void contextLoads() {
log.info("Just test");
}

}
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package com.fjb.product;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@Slf4j
@SpringBootTest
class ProductApplicationTests {

@Test
void contextLoads() {
log.info("Just test");
}

}

0 comments on commit d739322

Please sign in to comment.