public async Task ListDesigns_Should_ContainDesigns() { var client = new PrintAuraImagesClient(); var response = await client.ListMyImagesAsync(); Assert.True(response.Result == 1); }
public async Task ListMyImages_Should_ContainImages() { var client = new PrintAuraImagesClient(); var response = await client.ListMyImagesAsync(); Assert.True(response.Result == 1); Assert.True(response.Message.IsEmpty()); Assert.True(response.Images != null && response.Images.Count > 0); }