Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debugger-exception-test.cs « debugger « tests « wasm « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86904ca27ea879536cd677a79402f118d3f43101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Threading.Tasks;
namespace DebuggerTests
{
    public class ExceptionTestsClass
    {
        public class TestCaughtException
        {
            public void run()
            {
                try
                {
                    throw new CustomException("not implemented caught");
                }
                catch
                {
                    Console.WriteLine("caught exception");
                }
            }
        }

        public class TestUncaughtException
        {
            public void run()
            {
                throw new CustomException("not implemented uncaught");
            }
        }

        public static void TestExceptions()
        {
            TestCaughtException f = new TestCaughtException();
            f.run();

            TestUncaughtException g = new TestUncaughtException();
            g.run();
        }

    }

    public class CustomException : Exception
    {
        // Using this name to match with what js has.
        // helps with the tests
        public string message;
        public CustomException(string message)
            : base(message)
        {
            this.message = message;
        }
    }
}