-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJsonTest.cs
30 lines (24 loc) · 1.03 KB
/
JsonTest.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
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace FormCoreTest {
[TestClass]
public class JsonTest {
public dynamic obj;
[TestMethod]
public void JsonTests() {
var json =
"{\"ProductDescription\":null,\"StartedAt__FORMCORE__ExpiredAt\":[\"2018 - 05 - 29T17: 35:57.185 + 08:00\",\"2018 - 05 - 30T17: 35:57.185 + 08:00\"],\"InceptionBackdating\":90,\"ExcludedStates\":[\"HI\"]}";
obj = JsonConvert.DeserializeObject<dynamic>(json);
// null
Assert.AreEqual(null, obj.ProductDescription.Value);
// array
Assert.AreEqual(true, obj.StartedAt__FORMCORE__ExpiredAt.Type == JTokenType.Array);
Assert.AreEqual("2018 - 05 - 29T17: 35:57.185 + 08:00", obj.StartedAt__FORMCORE__ExpiredAt[0].Value);
Assert.AreEqual(2, obj.StartedAt__FORMCORE__ExpiredAt.Count);
// integer
Assert.AreEqual(true, obj.InceptionBackdating.Type == JTokenType.Integer);
Assert.AreEqual(90, obj.InceptionBackdating.Value);
}
}
}