• zp's avatar
    init · f9a4de2a
    zp authored
    f9a4de2a
BaseTest.java 424 Bytes
package com.tanpu.fund;

import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;

/**
 * @author: zhoupeng
 * @email: zhoupeng_08@163.com
 */
@RunWith(SpringRunner.class)
@SpringBootTest(classes = FundApplication.class)
@ActiveProfiles("dev")
public class BaseTest {
}