Exemplo n.º 1
0
            public async Task ReturnsJson()
            {
                var person = new qbo.Person(host, credential);
                var result = await person.GetJsonAsync("Search", "LastName=Patrick");

                Assert.NotNull(result);
            }
Exemplo n.º 2
0
            public async Task ReturnsDataSet()
            {
                var person = new qbo.Person(host, credential);
                var result = await person.GetDataSetAsync("Search", "[email protected]");

                Assert.NotNull(result);
                Assert.Single(result.Tables);
            }