-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathTest.cs
205 lines (187 loc) · 6.45 KB
/
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
//
// Copyright (c) .NET Foundation and Contributors
// Portions Copyright (c) Microsoft Corporation. All rights reserved.
// See LICENSE file in the project root for full license information.
//
using System;
using System.Diagnostics;
namespace nanoFramework.TestFramework.Test
{
[TestClass]
public class TestOfTest
{
[TestMethod]
public void TestRaisesException()
{
Debug.WriteLine("Test will raise exception");
Assert.ThrowsException(typeof(Exception), ThrowMe);
}
private void ThrowMe()
{
throw new Exception("Test failed and it's a shame");
}
[TestMethod]
public void TestCheckAllAreEqual()
{
Debug.WriteLine("Test will check that all the Equal are actually equal");
// Arrange
byte bytea = 42;
byte byteb = 42;
char chara = (char)42;
char charb = (char)42;
sbyte sbytea = 42;
sbyte sbyteb = 42;
int inta = 42;
int intb = 42;
uint uinta = 42;
uint uintb = 42;
long longa = 42;
long longb = 42;
ulong ulonga = 42;
ulong ulongb = 42;
bool boola = true;
bool boolb = true;
short shorta = 42;
short shortb = 42;
ushort ushorta = 42;
ushort ushortb = 42;
float floata = 42;
float floatb = 42;
int[] intArraya = new int[5] { 1, 2, 3, 4, 5 };
int[] intArrayb = new int[5] { 1, 2, 3, 4, 5 };
object obja = new object();
object objb = obja;
string stra = "42";
string strb = "42";
byte[] arrayempty = new byte[0];
// Assert
Assert.IsTrue(boola);
Assert.AreEqual(bytea, byteb);
Assert.AreEqual(chara, charb);
Assert.AreEqual(sbytea, sbyteb);
Assert.AreEqual(inta, intb);
Assert.AreEqual(uinta, uintb);
Assert.AreEqual(longa, longb);
Assert.AreEqual(ulonga, ulongb);
Assert.AreEqual(boola, boolb);
Assert.AreEqual(shorta, shortb);
Assert.AreEqual(ushorta, ushortb);
Assert.AreEqual(floata, floatb);
Assert.AreEqual(intArraya, intArrayb);
Assert.AreEqual(stra, strb);
Assert.AreSame(obja, objb);
CollectionAssert.Empty(arrayempty);
}
[TestMethod]
public void TestCheckAllAreNotEqual()
{
Debug.WriteLine("Test will check that all the NotEqual are actually equal");
// Arrange
byte bytea = 42;
byte byteb = 43;
char chara = (char)42;
char charb = (char)43;
sbyte sbytea = 42;
sbyte sbyteb = 43;
int inta = 42;
int intb = 43;
uint uinta = 42;
uint uintb = 43;
long longa = 42;
long longb = 43;
ulong ulonga = 42;
ulong ulongb = 43;
bool boola = true;
bool boolb = false;
short shorta = 42;
short shortb = 43;
ushort ushorta = 42;
ushort ushortb = 43;
float floata = 42;
float floatb = 43;
int[] intArraya = new int[5] { 1, 2, 3, 4, 5 };
int[] intArrayb = new int[5] { 1, 2, 3, 4, 6 };
int[] intArraybis = new int[4] { 1, 2, 3, 4 };
int[] intArrayter = null;
object obja = new object();
object objb = new object();
string stra = "42";
string strb = "43";
// Assert
Assert.IsFalse(boolb);
Assert.AreNotEqual(bytea, byteb);
Assert.AreNotEqual(chara, charb);
Assert.AreNotEqual(sbytea, sbyteb);
Assert.AreNotEqual(inta, intb);
Assert.AreNotEqual(uinta, uintb);
Assert.AreNotEqual(longa, longb);
Assert.AreNotEqual(ulonga, ulongb);
Assert.AreNotEqual(boola, boolb);
Assert.AreNotEqual(shorta, shortb);
Assert.AreNotEqual(ushorta, ushortb);
Assert.AreNotEqual(floata, floatb);
Assert.AreNotEqual(intArraya, intArrayb);
Assert.AreNotEqual(intArraya, intArraybis);
Assert.AreNotEqual(intArraya, intArrayter);
Assert.AreNotEqual(stra, strb);
Assert.AreNotSame(obja, objb);
CollectionAssert.NotEmpty(intArraya);
}
[TestMethod]
public void TestNullEmpty()
{
Debug.WriteLine("Test null, not null, types");
// Arrange
object objnull = null;
object objnotnull = new object();
Type typea = typeof(int);
Type typeb = typeof(int);
Type typec = typeof(long);
// Assert
Assert.IsNull(objnull);
Assert.IsNotNull(objnotnull);
Assert.IsInstanceOfType(typea, typeb);
Assert.IsNotInstanceOfType(typea, typec);
}
[TestMethod]
public void TestStringComparison()
{
Debug.WriteLine("Test string, Contains, EndsWith, StartWith");
// Arrange
string tocontains = "this text contains and end with contains";
string startcontains = "contains start this text";
string contains = "contains";
string doesnotcontains = "this is totally something else";
string empty = string.Empty;
string stringnull = null;
// Assert
Assert.Contains(contains, tocontains);
Assert.DoesNotContains(contains, doesnotcontains);
Assert.DoesNotContains(contains, empty);
Assert.DoesNotContains(contains, stringnull);
Assert.StartsWith(contains, startcontains);
Assert.EndsWith(contains, tocontains);
}
[Setup]
public void RunSetup()
{
Debug.WriteLine("Setup");
}
public void Nothing()
{
Debug.WriteLine("Nothing and should not be called");
}
[Cleanup]
public void Cleanup()
{
Debug.WriteLine("Cleanup");
}
}
public class SomthingElse
{
public void NothingReally()
{
Debug.WriteLine("Test failed: This would never get through");
}
}
}