-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasserts.psm1
More file actions
76 lines (70 loc) · 1.21 KB
/
asserts.psm1
File metadata and controls
76 lines (70 loc) · 1.21 KB
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
function assertAreEqual($expected, $actual)
{
if ($expected -eq $actual)
{
return
}
else
{
$msg = $expected.ToString() + " are not equal with " + $actual.ToString()
throw (New-Object Exception($msg))
}
}
function assertIsTrue($result)
{
if ($result -eq $false)
{
$msg = "Expected TRUE but actually FAILED"
throw (New-Object Exception($msg))
}
}
function assertIsNone($result)
{
if ($result -ne $null)
{
$msg = "Expected None but actually not"
throw (New-Object Exception($msg))
}
}
function assertFail()
{
$msg = "The test is set as failed"
throw (New-Object Exception($msg))
}
function assertAreGreater($first, $second)
{
if ($first -gt $second)
{
return
}
else
{
$msg = "$first is not greater than $second"
throw (New-Object Exception($msg))
}
}
function assertAreLess($first, $second)
{
if ($first -le $second)
{
return
}
else
{
$msg = "$first is not less than $second"
throw (New-Object Exception($msg))
}
}
function assertIsNotNull($object)
{
if ($object -ne $null)
{
return
}
else
{
$msg = "The object is expected to be NOT NULL but it is"
throw (New-Object Exception($msg))
}
}