junit测试在同一个包中找不到父类

e1xvtsh3  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(626)

我在intellijidea,试图从我的测试中提取一些逻辑,以便在其他测试中重用。问题是每次我创建另一个类时(在同一个测试包中);测试运行正常,但随后停止查找另一个文件,并抛出“java:cannotfindsymbol”错误。似乎每次我对原始文件进行更改时都会发生这种情况。对于我尝试创建的任何新类都是一样的,而不仅仅是本例中的抽象父类。
我在这里搜索过类似的问题,因为测试一开始是有效的,所以编译时intellij在同一个包中找不到类。但是,当我检查时,没有例外的脚本。
目前,我正在运行我的单元测试,只需右键单击我的测试文件夹并选择“运行所有测试”,或者以相同的方式运行单个测试。
如果您有任何见解,我将不胜感激。
编辑:谢谢你为我解决了图像格式问题。我还根据要求为这两个类添加了源代码。我仍然觉得离开图片是一个好主意,虽然,因为我主要是为了沟通项目结构和错误。另外,我想强调的是,这个问题与代码无关,因为任何两个文件都存在这个问题。
请注意,infotest的第51行(“line=line;”)很荒谬已添加以复制错误。对原始类的任何更改都会导致在包中找不到任何其他类。您甚至可以在显示测试正常运行的图像中看到它不存在。
提取类:

package CommandProcessing;

import GameLogic.Game;
import org.junit.jupiter.api.BeforeEach;
import java.lang.reflect.Field;
import static org.junit.jupiter.api.Assertions.fail;

public abstract class InputSimulator {
    protected Game game;
    protected CommandParser commandParser;

    @BeforeEach
    void setUp() {
        game = new Game();
        try {
            Class<?> gameClass = game.getClass();
            Field cmdField = gameClass.getDeclaredField("commandParser");
            cmdField.setAccessible(true);
            commandParser = (CommandParser)cmdField.get(game);
        } catch (Exception e){
            fail(e);
        }
    }

    protected void simulateInput(String input){
        commandParser.handleInput(input);
    }

    class InputTestCase {
        private String input;
        private String expected;

        public InputTestCase(String input, String expected){
            this.input = input;
            this.expected = expected;
        }

        public String getInput() { return input; }

        public String getExpected() { return expected; }
    }
}


原始类:

package CommandProcessing;

import Database.*;
import GameLogic.Game;
import Ship.*;
import IOHandler.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.lang.reflect.Field;
import java.util.ArrayList;
import static org.junit.jupiter.api.Assertions.*;

class InfoTest extends InputSimulator {

    private final InputTestCase[] testCases =
    {
        new InputTestCase("info cpit", "Cockpit - health: 100.0, shields: 100.0"),
        new InputTestCase("info engi", "Engine - health: 100.0, shields: 100.0"),
        new InputTestCase("info shld", "Shields - health: 100.0, shields: 100.0"),
        new InputTestCase("info weap", "Weapons - health: 100.0, shields: 100.0"),
        new InputTestCase("info tank", "FuelTank - health: 100.0, shields: 100.0"),
        new InputTestCase("info carg", "CargoBay - health: 100.0, shields: 100.0")
    };

    @Test
    void printPartsOnInfo() {
        simulateInput("info");
        ArrayList<String> expected = new ArrayList<String>();
        expected.add(game.dbAccess().getMessage(Message.Info));
        for(PartType part : PartType.values()){
            String partString = part.toString();
            expected.add(partString);
        }
        ArchiveAccess archiveAccess = game.getArchiveAccess();
        ArrayList<String> lines = archiveAccess.getOutput();

        assertEquals(expected, lines);
    }

    @Test
    void printPartDetails() {
        for (InputTestCase testCase : testCases) {
            simulateInput(testCase.getInput());
            ArchiveAccess archiveAccess = game.getArchiveAccess();
            String line = archiveAccess.lastOutput();
            line = line;
            assertEquals(testCase.getExpected(), line);
        }
    }
}


所有错误:

第一次试运行良好:

不排除:

wgx48brx

wgx48brx1#

所以,问题是测试根文件夹在我的源文件夹中!
事实上,我有一次得到了正确的答案,但读得不好:如何在intellij13中创建测试目录?。
测试根文件夹应位于主文件夹旁边,主文件夹应标记为源根,而不是其父“src”文件夹。我已经将这个父目录标记为源根目录-也就是说,默认的源根目录已经被称为'src',我设法将我的测试根文件夹放在其中,这个项目结构很难复制。因为名字的问题我搞糊涂了。
对我来说,一开始是如何让它工作的是一个谜,因为当我试图重现这个问题时,它需要一些绕道才能将我的测试根放在源代码根中。即使这样,测试在运行时也找不到junit包(尽管他们编译得很好)。

相关问题