mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-02 03:57:13 +08:00
GP-658 - fixed graph actions test
This commit is contained in:
+5
-5
@@ -35,7 +35,7 @@ import ghidra.test.AbstractGhidraHeadedIntegrationTest;
|
|||||||
import ghidra.test.TestEnv;
|
import ghidra.test.TestEnv;
|
||||||
import ghidra.util.task.TaskMonitor;
|
import ghidra.util.task.TaskMonitor;
|
||||||
|
|
||||||
public class GraphActionTest extends AbstractGhidraHeadedIntegrationTest {
|
public class GraphActionsTest extends AbstractGhidraHeadedIntegrationTest {
|
||||||
private TestEnv env;
|
private TestEnv env;
|
||||||
private PluginTool tool;
|
private PluginTool tool;
|
||||||
private AttributedGraph graph;
|
private AttributedGraph graph;
|
||||||
@@ -299,7 +299,7 @@ public class GraphActionTest extends AbstractGhidraHeadedIntegrationTest {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test TODO GP-658
|
@Test
|
||||||
public void testSelectNodeThatIsDoubleGrouped() {
|
public void testSelectNodeThatIsDoubleGrouped() {
|
||||||
select(a, b, c);
|
select(a, b, c);
|
||||||
collapse();
|
collapse();
|
||||||
@@ -332,7 +332,7 @@ public class GraphActionTest extends AbstractGhidraHeadedIntegrationTest {
|
|||||||
assertTrue(vertex instanceof GroupVertex);
|
assertTrue(vertex instanceof GroupVertex);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test TODO GP-658
|
@Test
|
||||||
public void testFocusNodeThatIsDoubleGrouped() {
|
public void testFocusNodeThatIsDoubleGrouped() {
|
||||||
select(a, b, c);
|
select(a, b, c);
|
||||||
collapse();
|
collapse();
|
||||||
@@ -362,7 +362,7 @@ public class GraphActionTest extends AbstractGhidraHeadedIntegrationTest {
|
|||||||
assertTrue(graphSpy.isFocused(a));
|
assertTrue(graphSpy.isFocused(a));
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test TODO GP-658
|
@Test
|
||||||
public void testListenerNotificatinWhenDoubleGroupedNodeFocused() {
|
public void testListenerNotificatinWhenDoubleGroupedNodeFocused() {
|
||||||
select(a, b, c);
|
select(a, b, c);
|
||||||
collapse();
|
collapse();
|
||||||
@@ -392,7 +392,7 @@ public class GraphActionTest extends AbstractGhidraHeadedIntegrationTest {
|
|||||||
assertTrue(graphSpy.isSelected(a, b, c));
|
assertTrue(graphSpy.isSelected(a, b, c));
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test TODO GP-658
|
@Test
|
||||||
public void testSelectNotificatinWhenDoubleGroupedNodeFocused() {
|
public void testSelectNotificatinWhenDoubleGroupedNodeFocused() {
|
||||||
select(a, b, c);
|
select(a, b, c);
|
||||||
collapse();
|
collapse();
|
||||||
Reference in New Issue
Block a user