28 lines
606 B
Java
28 lines
606 B
Java
/*
|
|
* Copyright ©2023 CJB-CNIT Team. All rights reserved
|
|
*/
|
|
package com.openhis;
|
|
|
|
import java.io.IOException;
|
|
|
|
import org.junit.Test;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
/**
|
|
* 测试类
|
|
*
|
|
* @author zwh
|
|
* @date 2024-12-03
|
|
*/
|
|
@Slf4j
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}, scanBasePackages = {"com.openhis"})
|
|
public class MedicationApplicationTests {
|
|
@Test
|
|
public void contextLoads() throws IOException {
|
|
|
|
}
|
|
}
|