Search in sources :

Example 1 with CombineChangeBlocks

use of de.tum.in.www1.artemis.service.hestia.behavioral.knowledgesource.CombineChangeBlocks in project Artemis by ls1intum.

the class CombineChangeBlocksTest method initBlackboard.

@BeforeEach
public void initBlackboard() {
    BehavioralBlackboard blackboard = new BehavioralBlackboard(null, null, null);
    var groupedFiles = new ArrayList<GroupedFile>();
    blackboard.setGroupedFiles(groupedFiles);
    groupedFile = new GroupedFile("test.java", null, null, null);
    groupedFiles.add(groupedFile);
    combineChangeBlocks = new CombineChangeBlocks(blackboard);
}
Also used : BehavioralBlackboard(de.tum.in.www1.artemis.service.hestia.behavioral.BehavioralBlackboard) CombineChangeBlocks(de.tum.in.www1.artemis.service.hestia.behavioral.knowledgesource.CombineChangeBlocks) GroupedFile(de.tum.in.www1.artemis.service.hestia.behavioral.GroupedFile) ArrayList(java.util.ArrayList) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 2 with CombineChangeBlocks

use of de.tum.in.www1.artemis.service.hestia.behavioral.knowledgesource.CombineChangeBlocks in project ArTEMiS by ls1intum.

the class CombineChangeBlocksTest method initBlackboard.

@BeforeEach
public void initBlackboard() {
    BehavioralBlackboard blackboard = new BehavioralBlackboard(null, null, null);
    var groupedFiles = new ArrayList<GroupedFile>();
    blackboard.setGroupedFiles(groupedFiles);
    groupedFile = new GroupedFile("test.java", null, null, null);
    groupedFiles.add(groupedFile);
    combineChangeBlocks = new CombineChangeBlocks(blackboard);
}
Also used : BehavioralBlackboard(de.tum.in.www1.artemis.service.hestia.behavioral.BehavioralBlackboard) CombineChangeBlocks(de.tum.in.www1.artemis.service.hestia.behavioral.knowledgesource.CombineChangeBlocks) GroupedFile(de.tum.in.www1.artemis.service.hestia.behavioral.GroupedFile) ArrayList(java.util.ArrayList) BeforeEach(org.junit.jupiter.api.BeforeEach)

Aggregations

BehavioralBlackboard (de.tum.in.www1.artemis.service.hestia.behavioral.BehavioralBlackboard)2 GroupedFile (de.tum.in.www1.artemis.service.hestia.behavioral.GroupedFile)2 CombineChangeBlocks (de.tum.in.www1.artemis.service.hestia.behavioral.knowledgesource.CombineChangeBlocks)2 ArrayList (java.util.ArrayList)2 BeforeEach (org.junit.jupiter.api.BeforeEach)2