getting initial tests working
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp1.1</TargetFramework>
|
||||
@@ -10,4 +10,8 @@
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\Web\Web.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user