Esempio n. 1
0
        public async void Request_throws_exception_if_not_enough_params()
        {
            var query = new TestQuery();

            query.Params = new Dictionary <string, string>()
            {
                { "owner", "me" }
            };
            await query.RequestAsync(new Uri("https://api.github.com"));
        }
Esempio n. 2
0
 public async void Request_throws_exception_if_Params_null()
 {
     var query = new TestQuery();
     await query.RequestAsync(new Uri("https://api.github.com"));
 }