feat:增加测试抽象父类
This commit is contained in:
parent
4c1d36ac0d
commit
50f4435c25
@ -131,6 +131,11 @@
|
|||||||
<groupId>com.github.rholder</groupId>
|
<groupId>com.github.rholder</groupId>
|
||||||
<artifactId>guava-retrying</artifactId>
|
<artifactId>guava-retrying</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.aizuda.easy.retry.server;
|
||||||
|
|
||||||
|
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
|
||||||
|
//@RunWith(SpringRunner.class)
|
||||||
|
@SpringBootTest(classes = EasyRetryServerApplication.class)
|
||||||
|
public class Abstract {
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user