using Newtonsoft.Json.Linq;
public void TestJsonConnectionConnection()
JsonConnection jconnection = new JsonConnection();
string rawJson = jconnection.Connection();
JArray jarray = JArray.Parse(rawJson);
dynamic data = JObject.Parse(jarray[0].ToString());
Assert.IsNotNull(rawJson);
Assert.IsNotNull(data.id);
Assert.IsNotNull(data.first_name);
Assert.IsNotNull(data.last_name);
Assert.IsNotNull(data.email);
Assert.IsNotNull(data.gender);
Assert.IsNotNull(data.Job);