From 8cb86c373f3cac93dec5a7894cd5861c685f6bc8 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sat, 25 Apr 2020 13:51:04 -0400 Subject: Got RawArray unit tests working for SoftDebugger --- UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs') diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs index 2abcd16..089c1b8 100644 --- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs +++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs @@ -340,6 +340,13 @@ namespace MonoDevelop.Debugger.Tests.TestApp BaseClass bar = new OverrideClass(); INamedTypeSymbol namedTypeSymbol = new NamedTypeSymbol (); + byte[] rawByteArray = new byte[256]; + char[] rawCharArray = new char[256]; + for (int i = 0; i < 256; i++) { + rawByteArray[i] = (byte) i; + rawCharArray[i] = (char) i; + } + Console.WriteLine (n); /*break*/ } -- cgit v1.2.3