public void GetShopifyThemeZip() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var theme = repository.GetShopifyThemes().First(); }
public void GetShopifyThemesTest() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var themes = repository.GetShopifyThemes(); Assert.NotNull(themes); Assert.True(themes.Any()); }
public void GetShopifyProductsTest() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var products = repository.GetShopifyProducts(); Assert.NotNull(products); Assert.True(products.Any()); }
public void GetShopifyCollectionsTest() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var collections = repository.GetShopifyCollections(); Assert.NotNull(collections); Assert.True(collections.Any()); }
public void GetShopifyPagesTest() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var pages = repository.GetShopifyPages(); Assert.IsNotNull(pages); Assert.IsTrue(pages.Any()); }
public void GetShopifyAssetsTest() { var shopifyAuthenticationService = GetAuthService(); var repository = new ShopifyRepository(shopifyAuthenticationService); var theme = repository.GetShopifyThemes().First(); var assets = repository.GetShopifyAssets(theme.Id); Assert.NotNull(assets); Assert.True(assets.Any()); }