public void Test_0113_bool_to_int() { JsonObject json = new JsonObject(); json.Put("f", true); json.GetInt("f"); }
public void Test_0117_string_to_int() { JsonObject json = new JsonObject(); json.Put("f", "10.01"); Assert.AreEqual(10, json.GetInt("f")); }
public void Test_0109_double_to_int() { JsonObject json = new JsonObject(); json.Put("f", 10.00); Assert.AreEqual(10, json.GetInt("f")); }
public void Test_0105_long_to_int() { JsonObject json = new JsonObject(); json.Put("f", 10L); Assert.AreEqual(10, json.GetInt("f")); }
public void Test_0011_IntValue() { JsonObject json = new JsonObject("{\"id\":1234}"); Assert.AreEqual("{\"id\":1234}", json.ToString()); Assert.AreEqual((int)1234, json.GetInt("id")); }
public void Test_0110_IntValue_MIN() { JsonObject json = new JsonObject(); json.Put("value", int.MinValue); Assert.AreEqual("{\"value\":" + int.MinValue + "}", json.ToString()); Assert.AreEqual(int.MinValue, json.GetInt("value")); }
public void Test_0031_set_Int() { JsonObject json = new JsonObject(); json.Put("id", (int)1234); Assert.AreEqual("{\"id\":1234}", json.ToString()); Assert.AreEqual(1234, json.GetInt("id")); }