테스트 클래스 삭제
parent
06751b05cd
commit
e34274eb0d
@ -1,49 +0,0 @@
|
||||
package cokr.xit.fims.excl.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.excl.Excl01;
|
||||
import cokr.xit.fims.excl.ExclQuery01;
|
||||
|
||||
/**OpnnSbmsnService 테스트.
|
||||
*
|
||||
* <p>상세 설명:
|
||||
*
|
||||
* <pre>
|
||||
* ============ 변경 이력 ============
|
||||
* 2023-06-27 JoJH 최초 작성
|
||||
* ================================
|
||||
* </pre>
|
||||
*/
|
||||
public class Excl02ServiceTest extends TestSupport {
|
||||
@Resource(name = "excl02Service")
|
||||
private Excl02Service excl02Service;
|
||||
|
||||
@Test
|
||||
void getOpnnSbmsnList() {
|
||||
List<DataObject> opnnSbmsnList = excl02Service.getOpnnSbmsnList(new ExclQuery01());
|
||||
opnnSbmsnList.forEach(System.out::println);
|
||||
}
|
||||
|
||||
@Test
|
||||
void getOpnnSbmsns() {
|
||||
List<Excl01> opnnSbmsns = excl02Service.getOpnnSbmsns(new ExclQuery01());
|
||||
opnnSbmsns.forEach(System.out::println);
|
||||
}
|
||||
|
||||
@Test
|
||||
void create() {}
|
||||
|
||||
@Test
|
||||
void update() {}
|
||||
|
||||
@Test
|
||||
void remove() {}
|
||||
}
|
Loading…
Reference in New Issue