AppleErpApplicationTests.java 460 Bytes
package com.apple.erp;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;

/**
 * Apple经销商ERP系统测试类
 * 
 * @author Apple ERP Team
 * @version 1.0.0
 * @since 2024-01-01
 */
@SpringBootTest
@ActiveProfiles("test")
class AppleErpApplicationTests {

    @Test
    void contextLoads() {
        // 测试Spring上下文是否正常加载
    }

}