spring引导测试实用程序类

pbpqsu0x  于 2021-07-13  发布在  Java
关注(0)|答案(1)|浏览(382)

我有一个实用程序包,我想在同一个项目中与spring启动应用程序结合,而不是单独存储它们。
我想对这些根本不需要spring上下文的内部实用程序类进行单元测试——我可以从单元测试类调用它们,因此启动应用程序是不必要的开销。
它们只是一些类,涉及对存储在 resources 文件夹-本质上,它们完全独立于spring应用程序(它们不是服务,也不需要被模仿,只是标准的实用程序类),尽管它们本身并没有多大用处。
现在,我可以在ide(intellij)中手动运行测试,方法是单击显示的测试图标,但是,当我尝试使用

mvn test

我遇到了:

[INFO] Results:
[INFO] 
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[INFO]

请注意,我可以运行 junit 当实用程序包位于单独的包中时进行测试(带有 mvn test )但我想把它和申请书放在同一个包裹里。
这是我的 pom.xml 如果这有帮助:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>project</groupId>
    <artifactId>project</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>project</name>
    <url>http://maven.apache.org</url>

    <properties>
        <maven.compiler.source>13</maven.compiler.source>
        <maven.compiler.target>13</maven.compiler.target>
        <start-class>package.application.Application</start-class>
    </properties>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.2</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <version>2.4.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>RELEASE</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>[3.2.2,)</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>[4.13.1,)</version>
            <scope>test</scope>
        </dependency>

        ... Other dependencies

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M5</version>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <start-class>package.application.Application</start-class>
                    <layout>ZIP</layout>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

非常感谢您的帮助。
编辑
我的测试结构:

test/java
    - utility
        - category1
            - ParserTest.java
        - category2
            - SomeOtherTest.java
    - application

我想运行 utility 包裹。

bqujaahr

bqujaahr1#

您还没有提供足够的细节使其可复制,但是根据您提供的信息,我认为您的junit测试没有运行,因为最新的spring将默认为junit5,而不是junit4,在本例中,除非您明确指定要运行junit4测试,否则将自动忽略junit4测试。
建议的操作是升级到junit5。
如果要继续使用junit4,可以添加此依赖项,以便运行遗留测试:

<!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
    <dependency>
        <groupId>org.junit.vintage</groupId>
        <artifactId>junit-vintage-engine</artifactId>
        <version>5.1.0</version>
    </dependency>

相关问题