《springboot》springboot编写测试类test, junit

时间:2025-02-16 09:53:48

<dependency>
    <groupId></groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <version>2.0.</version>
    <scope>test</scope>
</dependency>

        <dependency>
		    <groupId>junit</groupId>
		    <artifactId>junit</artifactId>
		    <version>4.12</version>
		    <scope>test</scope>
		</dependency>
@RunWith()
@SpringBootTest
public class testDBEncode {

 

    @Test
    public void encryptPwd() {
        ("1111111111111");
    }
    
 

}