-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
debugger-assignment-test.cs
234 lines (209 loc) · 5.06 KB
/
debugger-assignment-test.cs
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DebuggerTests
{
public class StepInTest<T>
{
public static int TestedMethod(T value)
{
// 1) break here and check un-assigned variables
T r;
r = value;
// 2) break here and check assigned variables
return 0;
}
}
public class MONO_TYPE_OBJECT
{
public static int Prepare()
{
var value = new object();
return StepInTest<object>.TestedMethod(value);
}
}
public class MONO_TYPE_CLASS
{
public static int Prepare()
{
var value = new MONO_TYPE_CLASS();
return StepInTest<MONO_TYPE_CLASS>.TestedMethod(value);
}
}
public class MONO_TYPE_BOOLEAN
{
public static int Prepare()
{
var value = true;
return StepInTest<bool>.TestedMethod(value);
}
}
public class MONO_TYPE_CHAR
{
public static int Prepare()
{
var value = 'a';
return StepInTest<char>.TestedMethod(value);
}
}
public class MONO_TYPE_I1
{
public static int Prepare()
{
sbyte value = -1;
return StepInTest<sbyte>.TestedMethod(value);
}
}
public class MONO_TYPE_I2
{
public static int Prepare()
{
short value = -1;
return StepInTest<short>.TestedMethod(value);
}
}
public class MONO_TYPE_I4
{
public static int Prepare()
{
int value = -1;
return StepInTest<int>.TestedMethod(value);
}
}
public class MONO_TYPE_I8
{
public static int Prepare()
{
long value = -1;
return StepInTest<long>.TestedMethod(value);
}
}
public class MONO_TYPE_U1
{
public static int Prepare()
{
byte value = 1;
return StepInTest<byte>.TestedMethod(value);
}
}
public class MONO_TYPE_U2
{
public static int Prepare()
{
ushort value = 1;
return StepInTest<ushort>.TestedMethod(value);
}
}
public class MONO_TYPE_U4
{
public static int Prepare()
{
uint value = 1;
return StepInTest<uint>.TestedMethod(value);
}
}
public class MONO_TYPE_U8
{
public static int Prepare()
{
ulong value = 1;
return StepInTest<ulong>.TestedMethod(value);
}
}
public class MONO_TYPE_R4
{
public static int Prepare()
{
float value = 3.1415F;
return StepInTest<float>.TestedMethod(value);
}
}
public class MONO_TYPE_R8
{
public static int Prepare()
{
double value = 3.1415D;
return StepInTest<double>.TestedMethod(value);
}
}
public class MONO_TYPE_STRING
{
public static int Prepare()
{
string value = "hello";
return StepInTest<string>.TestedMethod(value);
}
}
public class MONO_TYPE_ENUM
{
public static int Prepare()
{
RGB value = RGB.Blue;
return StepInTest<RGB>.TestedMethod(value);
}
}
public class MONO_TYPE_ARRAY
{
public static int Prepare()
{
byte[] value = new byte[2] { 1, 2 };
return StepInTest<byte[]>.TestedMethod(value);
}
}
public class MONO_TYPE_VALUETYPE
{
public static int Prepare()
{
Point value = new Point();
return StepInTest<Point>.TestedMethod(value);
}
}
public class MONO_TYPE_VALUETYPE2
{
public static int Prepare()
{
Decimal value = 1.1m;
return StepInTest<Decimal>.TestedMethod(value);
}
}
public class MONO_TYPE_GENERICINST
{
public static int Prepare()
{
Func<int> value = MONO_TYPE_GENERICINST.Prepare;
return StepInTest<Func<int>>.TestedMethod(value);
}
}
public class MONO_TYPE_FNPTR
{
public unsafe static int Prepare()
{
delegate*<int> value = &MONO_TYPE_FNPTR.Prepare;
return TestedMethod(value);
}
public unsafe static int TestedMethod(delegate*<int> value)
{
delegate*<int> r;
r = value;
return 0;
}
}
public class MONO_TYPE_PTR
{
public unsafe static int Prepare()
{
int a = 1; int* value = &a;
return TestedMethod(value);
}
public unsafe static int TestedMethod(int* value)
{
int* r;
r = value;
return 0;
}
}
}