Boo.BooLangStudioSpecs.Intellisense.WhenParsingSingleFileForIntellisense.InterfacesShouldBeParsed C# (CSharp) Method

InterfacesShouldBeParsed() private method

private InterfacesShouldBeParsed ( ) : void
return void
        public void InterfacesShouldBeParsed()
        {
            var project = CompiledFixtures.Project;

            var document = project.ParseTree.Children[0];
            var interfaceNode = document.Children[0];

            Assert.IsType<InterfaceTreeNode>(interfaceNode);
            Assert.Equal("MyInterface", interfaceNode.Name);
        }