GetApplications() public method

Gets all applications from the marketplace
public GetApplications ( ) : Task>
return Task>
Exemplo n.º 1
0
        public async Task GetApplications()
        {
            var result = await marketplace.GetApplications();

            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
            Assert.IsNotNull(result.Data.Where(a => a.Name == test.Constants.AppName).SingleOrDefault());;
            EnqueueTestComplete();
        }