forked from dsuarezv/Netduino-gcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssert.cs
More file actions
45 lines (40 loc) · 1.34 KB
/
Copy pathAssert.cs
File metadata and controls
45 lines (40 loc) · 1.34 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
using System;
using System.Collections;
namespace gcodeparser
{
/// <summary>
/// Util used to check parameters
/// </summary>
public class Assert
{
// Localization infraestructure can be applied here when available.
public static void IsNotNull(object target, string exceptionMessageFormat, params object[] par)
{
if (target == null)
{
throw new Exception(string.Format(exceptionMessageFormat, par));
}
}
public static void IsTrue(bool condition, string exceptionMessageFormat, params object[] par)
{
if (!condition)
{
throw new Exception(string.Format(exceptionMessageFormat, par));
}
}
public static void IsUsableString(string target, string exceptionMessageFormat, params object[] par)
{
if (target == null || target == string.Empty)
{
throw new Exception(string.Format(exceptionMessageFormat, par));
}
}
public static void IsUsableCollection(IList target, string exceptionMessageFormat, params object[] par)
{
if (target == null || target.Count == 0)
{
throw new Exception(string.Format(exceptionMessageFormat, par));
}
}
}
}