OutlineFile() public static method

public static OutlineFile ( IEditorShell editorShell, EditorTestFilesFixture fixture, string name ) : void
editorShell IEditorShell
fixture EditorTestFilesFixture
name string
return void
示例#1
0
        public void RRegionBuilder_OutlineFile01()
        {
            Action a = () => OutlineTest.OutlineFile(_testFiles, "01.r");

            a.ShouldNotThrow();
        }
示例#2
0
        public void OutlineFile(string name)
        {
            Action a = () => OutlineTest.OutlineFile(_services, _testFiles, name);

            a.ShouldNotThrow();
        }
示例#3
0
        public void OutlineFile(string name)
        {
            Action a = () => OutlineTest.OutlineFile(_editorShell, _testFiles, name);

            a.ShouldNotThrow();
        }