no message

main
이범준 6 months ago
parent 818fa16bbb
commit def6cd4601

@ -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() {
}
}

@ -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 .
*
* <p> :
*
* <pre>
* ============ ============
* 2023-08-16 leebj
* ================================
* </pre>
*/
public class CrdnPayerHstryServiceTest extends TestSupport {
@Resource(name = "crdnPayerHstryService")
private CrdnPayerHstryService crdnPayerHstryService;
@Test
void getCrdnPayerHstryList() {
List<DataObject> crdnPayerHstryList = crdnPayerHstryService.getCrdnPayerHstryList(new CrdnPayerHstryQuery());
crdnPayerHstryList.forEach(System.out::println);
}
@Test
void getCrdnPayerHstrys() {
List<CrdnPayerHstry> crdnPayerHstrys = crdnPayerHstryService.getCrdnPayerHstrys(new CrdnPayerHstryQuery());
crdnPayerHstrys.forEach(System.out::println);
}
@Test
void create() {}
@Test
void update() {}
@Test
void remove() {}
}
Loading…
Cancel
Save