feat:增加测试抽象父类

This commit is contained in:
高卫强 2023-08-02 13:50:00 +08:00
parent 4c1d36ac0d
commit 50f4435c25
2 changed files with 15 additions and 0 deletions

View File

@ -131,6 +131,11 @@
<groupId>com.github.rholder</groupId>
<artifactId>guava-retrying</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>

View File

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