Skip to content

单元测试 ^1.9.5

在spring boot单元测试环境下,希望AutoTable仍然自动建表,那么就需要使用到@EnableAutoTableTest了

举例:

java
@EnableAutoTableTest
@SpringBootTest
public class MyTest {

    @Test
    public void test() {
        // 测试逻辑...
    }
}

注意

该特性,自版本1.9.5才开始支持,请查看相关框架引入的版本号。