Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@851 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
8 changed files with 87 additions and 87 deletions
@ -0,0 +1,28 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
||||||
|
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
||||||
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
using Progs = Debugger.Tests.TestPrograms; |
||||||
|
|
||||||
|
namespace Debugger.Tests |
||||||
|
{ |
||||||
|
public class TestProgram |
||||||
|
{ |
||||||
|
public static void Main(string[] args) |
||||||
|
{ |
||||||
|
if (args.Length == 0) { |
||||||
|
return; |
||||||
|
} |
||||||
|
switch (args[0]) { |
||||||
|
case "SimpleProgram": Progs.SimpleProgram.Main(); break; |
||||||
|
case "HelloWorld": Progs.HelloWorld.Main(); break; |
||||||
|
case "Breakpoint": Progs.Breakpoint.Main(); break; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -1,19 +1,19 @@ |
|||||||
// <file>
|
// <file>
|
||||||
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
||||||
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
||||||
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||||
// <version>$Revision$</version>
|
// <version>$Revision$</version>
|
||||||
// </file>
|
// </file>
|
||||||
|
|
||||||
using System; |
using System; |
||||||
|
|
||||||
namespace DebuggerLibrary.Tests.TestPrograms |
namespace Debugger.Tests.TestPrograms |
||||||
{ |
{ |
||||||
public class ConsoleHelloWorld |
public class Breakpoint |
||||||
{ |
{ |
||||||
public static void Main() |
public static void Main() |
||||||
{ |
{ |
||||||
Console.WriteLine("Hello world!"); |
System.Diagnostics.Debug.WriteLine("Line 16"); |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
@ -1,15 +1,15 @@ |
|||||||
// <file>
|
// <file>
|
||||||
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
||||||
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
||||||
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||||
// <version>$Revision$</version>
|
// <version>$Revision$</version>
|
||||||
// </file>
|
// </file>
|
||||||
|
|
||||||
using System; |
using System; |
||||||
|
|
||||||
namespace DebuggerLibrary.Tests.TestPrograms |
namespace Debugger.Tests.TestPrograms |
||||||
{ |
{ |
||||||
public class DiagnosticsDebugHelloWorld |
public class HelloWorld |
||||||
{ |
{ |
||||||
public static void Main() |
public static void Main() |
||||||
{ |
{ |
||||||
Loading…
Reference in new issue