Files
his/openhis-server/openhis-application/src/test/java/com/openhis/MedicationApplicationTests.java
2025-02-20 11:25:59 +08:00

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 {
}
}