示例#1
0
        public void CompileKitchenSinkForAttach(ITestSettings settings)
        {
            this.TestPurpose("Compiles the kitchen sink debuggee for attach.");
            this.WriteSettings(settings);

            IDebuggee debuggee = SinkHelper.OpenAndCompile(this, settings.CompilerSettings, DebuggeeMonikers.KitchenSink.Attach);
        }
示例#2
0
        public void CompileKitchenSinkForExpressionTests(ITestSettings settings)
        {
            this.TestPurpose("Compile kitchen sink debuggee for expression tests.");
            this.WriteSettings(settings);

            IDebuggee debuggee = SinkHelper.OpenAndCompile(this, settings.CompilerSettings, DebuggeeMonikers.KitchenSink.Expression);
        }
示例#3
0
        public void CompileKitchenSinkForBreakpointTests(ITestSettings settings)
        {
            this.TestPurpose("Compiles the kitchen sink debuggee.");
            this.WriteSettings(settings);

            IDebuggee debuggee = SinkHelper.OpenAndCompile(this, settings.CompilerSettings, DebuggeeMonikers.KitchenSink.Breakpoint);
        }