From def6cd46014a586eec604e7f0f2cdd0f13fa1bb9 Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Tue, 7 May 2024 16:51:23 +0900 Subject: [PATCH] no message --- .../cokr/xit/fims/FimsApplicationTests.java | 16 ------ .../service/CrdnPayerHstryServiceTest.java | 49 ------------------- 2 files changed, 65 deletions(-) delete mode 100644 src/test/java/cokr/xit/fims/FimsApplicationTests.java delete mode 100644 src/test/java/cokr/xit/fims/cmmn/service/CrdnPayerHstryServiceTest.java diff --git a/src/test/java/cokr/xit/fims/FimsApplicationTests.java b/src/test/java/cokr/xit/fims/FimsApplicationTests.java deleted file mode 100644 index 2ad5acef..00000000 --- a/src/test/java/cokr/xit/fims/FimsApplicationTests.java +++ /dev/null @@ -1,16 +0,0 @@ -package cokr.xit.fims; - -import org.junit.jupiter.api.Test; -import org.springframework.test.context.ContextConfiguration; - -import cokr.xit.base.boot.XitBaseTest; - - -@ContextConfiguration(classes = FimsApplication.class) -class FimsApplicationTests extends XitBaseTest { - - @Test - void contextLoads() { - } - -} \ No newline at end of file diff --git a/src/test/java/cokr/xit/fims/cmmn/service/CrdnPayerHstryServiceTest.java b/src/test/java/cokr/xit/fims/cmmn/service/CrdnPayerHstryServiceTest.java deleted file mode 100644 index bc99d86d..00000000 --- a/src/test/java/cokr/xit/fims/cmmn/service/CrdnPayerHstryServiceTest.java +++ /dev/null @@ -1,49 +0,0 @@ -package cokr.xit.fims.cmmn.service; - -import java.util.List; - -import javax.annotation.Resource; - -import org.junit.jupiter.api.Test; - -import cokr.xit.foundation.data.DataObject; -import cokr.xit.foundation.test.TestSupport; - -import cokr.xit.fims.cmmn.CrdnPayerHstry; -import cokr.xit.fims.cmmn.CrdnPayerHstryQuery; - -/**CrdnPayerHstryService 테스트. - * - *

상세 설명: - * - *

- * ============ 변경 이력 ============
- * 2023-08-16	leebj 최초 작성
- * ================================
- * 
- */ -public class CrdnPayerHstryServiceTest extends TestSupport { - @Resource(name = "crdnPayerHstryService") - private CrdnPayerHstryService crdnPayerHstryService; - - @Test - void getCrdnPayerHstryList() { - List crdnPayerHstryList = crdnPayerHstryService.getCrdnPayerHstryList(new CrdnPayerHstryQuery()); - crdnPayerHstryList.forEach(System.out::println); - } - - @Test - void getCrdnPayerHstrys() { - List crdnPayerHstrys = crdnPayerHstryService.getCrdnPayerHstrys(new CrdnPayerHstryQuery()); - crdnPayerHstrys.forEach(System.out::println); - } - - @Test - void create() {} - - @Test - void update() {} - - @Test - void remove() {} -} \ No newline at end of file