zoukankan      html  css  js  c++  java
  • 使用springboot 单元测试注意事项(单元测试出现initializationerror初始化异常)

    准备工作:

    1.pom.xml文件中新增所需的依赖:

            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
                <!-- <scope>test</scope> -->
            </dependency>

          <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
          </dependency>



    2.在src/test/java中新建一个和src/main/java的xxxApplication.java文件所在的目录一样的目录(如果你是新建的springboot工程,下图中标红的目录是自动创建的)。

    3.以2为例,我们所有的测试代码均要在src/test/java下的com.example.demo下编写,否则报错出现initializationerror初始化异常。

    保持耐心,每天进步一点点;持续学习,才能让自己心安。
  • 相关阅读:
    接口测试之Postman简介
    postman发送get请求
    postman添加权限验证
    接口测试基础
    postman发送post请求
    postman测试上传文件
    1 R语言介绍
    《荣枯鉴》明鉴卷六
    《荣枯鉴》节仪卷五
    《荣枯鉴》交结卷四
  • 原文地址:https://www.cnblogs.com/dyys/p/10483963.html
Copyright © 2011-2022 走看看