GetUserApplicationNames() public method

Gets all application's names that were installed by the authenticated user.
public GetUserApplicationNames ( ) : Task>
return Task>
Exemplo n.º 1
0
        public async Task GetUserApplicationNames()
        {
            var result = await marketplace.GetUserApplicationNames();

            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
            EnqueueTestComplete();
        }