-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7347581
commit ed5ff99
Showing
4 changed files
with
37 additions
and
23 deletions.
There are no files selected for viewing
21 changes: 0 additions & 21 deletions
21
mica-captcha/src/test/java/net/dreamlu/mica/CaptchaApplicationTests.java
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
mica-captcha/src/test/java/net/dreamlu/mica/captcha/CaptchaApplicationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package net.dreamlu.mica.captcha; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.cache.annotation.EnableCaching; | ||
import org.springframework.test.context.ActiveProfiles; | ||
|
||
/** | ||
* 验证码 测试 | ||
* | ||
* @author L.cm | ||
*/ | ||
@SpringBootTest | ||
@ActiveProfiles("dev") | ||
class CaptchaApplicationTests { | ||
|
||
@SpringBootApplication | ||
@EnableCaching | ||
public static class CaptchaApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(CaptchaApplication.class); | ||
} | ||
|
||
} | ||
|
||
|
||
@Test | ||
void contextLoads() { | ||
|
||
} | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...st/java/net/dreamlu/mica/CaptchaTest.java → ...net/dreamlu/mica/captcha/CaptchaTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/net/dreamlu/mica/fonts/FontsTest.java → ...dreamlu/mica/captcha/fonts/FontsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters