diff --git a/tests/IntegrationTests/IntegrationTests.csproj b/tests/IntegrationTests/IntegrationTests.csproj index f03259659..f27ff355c 100644 --- a/tests/IntegrationTests/IntegrationTests.csproj +++ b/tests/IntegrationTests/IntegrationTests.csproj @@ -1,4 +1,4 @@ - + netcoreapp1.1 @@ -10,4 +10,8 @@ + + + + diff --git a/tests/IntegrationTests/Web/Controllers/CatalogControllerGetImage.cs b/tests/IntegrationTests/Web/Controllers/CatalogControllerGetImage.cs new file mode 100644 index 000000000..0217ad14b --- /dev/null +++ b/tests/IntegrationTests/Web/Controllers/CatalogControllerGetImage.cs @@ -0,0 +1,17 @@ +using Microsoft.eShopWeb.Controllers; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace IntegrationTests.Web.Controllers +{ + public class CatalogControllerGetImage + { + [Fact] + public void ReturnsFileContentResultGivenValidId() + { + //var controller = new CatalogController() + } + } +}