public void SelectPreviousNextCommandsTest() { var codeFlow = new CodeFlow { Locations = new List<AnnotatedCodeLocation> { new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Call }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.CallReturn }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration } } }; CallTree callTree = new CallTree(CodeFlowToTreeConverter.Convert(codeFlow)); callTree.FindPrevious().Should().Be(null); callTree.FindNext().Should().Be(null); callTree.SelectedItem = callTree.TopLevelNodes[0]; callTree.FindPrevious().Should().Be(callTree.TopLevelNodes[0]); callTree.FindNext().Should().Be(callTree.TopLevelNodes[0].Children[0]); callTree.SelectedItem = callTree.TopLevelNodes[0].Children[0]; callTree.FindPrevious().Should().Be(callTree.TopLevelNodes[0]); callTree.FindNext().Should().Be(callTree.TopLevelNodes[0].Children[1]); callTree.SelectedItem = callTree.TopLevelNodes[0].Children[2]; callTree.FindPrevious().Should().Be(callTree.TopLevelNodes[0].Children[1]); callTree.FindNext().Should().Be(callTree.TopLevelNodes[1]); callTree.SelectedItem = callTree.TopLevelNodes[1]; callTree.FindPrevious().Should().Be(callTree.TopLevelNodes[0].Children[2]); callTree.FindNext().Should().Be(callTree.TopLevelNodes[2]); callTree.SelectedItem = callTree.TopLevelNodes[2]; callTree.FindPrevious().Should().Be(callTree.TopLevelNodes[1]); callTree.FindNext().Should().Be(callTree.TopLevelNodes[2]); }
public void CallTree_ExpandAll_NoNodes() { CallTree tree = new CallTree(new List<CallTreeNode>()); tree.ExpandAll(); }
private CallTree CreateCallTree() { var codeFlow = new CodeFlow { Locations = new List<AnnotatedCodeLocation> { new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Call, Importance = AnnotatedCodeLocationImportance.Unimportant, }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration, Importance = AnnotatedCodeLocationImportance.Important, }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration, Importance = AnnotatedCodeLocationImportance.Essential, }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.CallReturn, Importance = AnnotatedCodeLocationImportance.Unimportant, }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration, Importance = AnnotatedCodeLocationImportance.Unimportant, }, new AnnotatedCodeLocation { Kind = AnnotatedCodeLocationKind.Declaration, Importance = AnnotatedCodeLocationImportance.Essential, } } }; CallTree callTree = new CallTree(CodeFlowToTreeConverter.Convert(codeFlow)); return callTree; }