Eclipse插件junit-tools使用@MethodRef生成代码,但未定义

watbbzwu  于 2023-02-04  发布在  Eclipse
关注(0)|答案(1)|浏览(95)

我为Eclipse安装了junit-tools来简化JUnit测试的创建。该工具生成的测试类有一个@MethodRef注解,但无法解析,而且我找不到jar文件,甚至找不到要添加的Maven依赖项。我也不知道完全限定的包名是什么。问题出在我对生成的文件进行任何修改之前。
关于插件:
http://junit-tools.org/index.php
插件名称:www.example.comorg.junit.tools
版本号:1.1.0.201811090440
插件ID:www.example.comorg.junit.tools
Eclipse版本:
版本号:2018年9月(4.9.0)
构建编号:20180917 - 1800
错误代码是C:\eclipse-workspaces\jdbvc\dbvcs\src\测试\java\com\规范公司\dbvcs\模型\连接信息测试. java

package com.enormacorp.dbvcs.model;

import javax.annotation.Generated;

import org.junit.Test;

@Generated(value = "org.junit-tools-1.1.0")
public class ConnectionInformationTest {

    private ConnectionInformation createTestSubject() {
        return new ConnectionInformation();
    }

    @MethodRef(name = "getJdbcDriverClassName", signature = "()QString;")
    @Test
    public void testGetJdbcDriverClassName() throws Exception {
        ConnectionInformation testSubject;
        String result;

        // default test
        testSubject = createTestSubject();
        result = testSubject.getJdbcDriverClassName();
    }

    @MethodRef(name = "setJdbcDriverClassName", signature = "(QString;)V")
    @Test
    public void testSetJdbcDriverClassName() throws Exception {
        ConnectionInformation testSubject;
        String jdbcDriverClassName = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setJdbcDriverClassName(jdbcDriverClassName);
    }
}

pom文件:

<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>com.enormacorp.dbvcs</groupId>
    <artifactId>main</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>com.enormacorp.dbvcs.main</name>
    <packaging>pom</packaging>
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

Eclipse错误:MethodRef无法解析为类型
在Eclipse的Java构建路径中,我只有JRE系统库和maven依赖项。
我希望这样可以解析工具生成的任何类,我的第一个选择是添加一个Maven测试范围依赖项,第二个选择是显式地将任何定义@MethodRef的jar添加到构建路径。

f45qwnt8

f45qwnt81#

它缺少Junit-tools jar文件。Maven依赖项不起作用。

<dependency>
    <groupId>net.praqma</groupId>
    <artifactId>junit-tools</artifactId>
    <version>0.1.0</version>
</dependency>

因此,请从“www.example.com“下载相关的jar文件http://junit-tools.org/index.php/getting-started,并将它们放在类路径中。x1c 0d1x

相关问题