From 6de5c5ba25886270bddfbd827b6cf0b7f8a178a2 Mon Sep 17 00:00:00 2001 From: Thays Grazia Date: Fri, 14 Jan 2022 16:00:23 -0300 Subject: [wasm][debugger] Missing test files (#63148) Adding test files that were not added on release 6.0 by mistake. --- .../debugger-test-with-full-debug-type.csproj | 5 +++++ .../tests/debugger-test-with-full-debug-type/test.cs | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj create mode 100644 src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs diff --git a/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj new file mode 100644 index 00000000000..5eb1be9d8ea --- /dev/null +++ b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/debugger-test-with-full-debug-type.csproj @@ -0,0 +1,5 @@ + + + full + + \ No newline at end of file diff --git a/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs new file mode 100644 index 00000000000..64609af24a5 --- /dev/null +++ b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs @@ -0,0 +1,20 @@ +using System; + +namespace DebuggerTests +{ + public class ClassToInspectWithDebugTypeFull + { + int a; + int b; + int c; + public ClassToInspectWithDebugTypeFull() + { + a = 10; + b = 20; + c = 30; + Console.WriteLine(a); + Console.WriteLine(b); + Console.WriteLine(c); + } + } +} \ No newline at end of file -- cgit v1.2.3