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 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());
        }