mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
remove DataLost.Tests, add stub test file to other Tests projs.
This commit is contained in:
parent
3e1773a16e
commit
cbde0780e2
5 changed files with 45 additions and 19 deletions
|
|
@ -55,10 +55,6 @@ Global
|
|||
{9F296ECF-97C9-47E6-A794-5AD900ECFE6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9F296ECF-97C9-47E6-A794-5AD900ECFE6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9F296ECF-97C9-47E6-A794-5AD900ECFE6C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{F2B45EA6-5BB9-4E61-9245-1CF3D2A12CA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F2B45EA6-5BB9-4E61-9245-1CF3D2A12CA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F2B45EA6-5BB9-4E61-9245-1CF3D2A12CA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
|
|
@ -71,6 +67,10 @@ Global
|
|||
{D91D5249-D860-4C17-8C22-6C9777D56F2F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D91D5249-D860-4C17-8C22-6C9777D56F2F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D91D5249-D860-4C17-8C22-6C9777D56F2F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
@ -81,12 +81,12 @@ Global
|
|||
{944ADE8F-18E3-4DB8-9098-6A55E026EAC1} = {E7590A2B-621D-47EA-B026-315793F0FE50}
|
||||
{B507EE76-B035-45D7-9D26-DF38A5013BC3} = {E7590A2B-621D-47EA-B026-315793F0FE50}
|
||||
{9F296ECF-97C9-47E6-A794-5AD900ECFE6C} = {E7590A2B-621D-47EA-B026-315793F0FE50}
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37} = {378861FC-4C64-4676-9FA8-04A053219EA5}
|
||||
{F2B45EA6-5BB9-4E61-9245-1CF3D2A12CA6} = {378861FC-4C64-4676-9FA8-04A053219EA5}
|
||||
{41F52C6C-3CD1-4CE7-82E2-8E1B923C0D9E} = {378861FC-4C64-4676-9FA8-04A053219EA5}
|
||||
{D91D5249-D860-4C17-8C22-6C9777D56F2F} = {378861FC-4C64-4676-9FA8-04A053219EA5}
|
||||
{E5489C3B-A7AE-440B-8017-DA5550C11A37} = {378861FC-4C64-4676-9FA8-04A053219EA5}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {8A31B449-52DD-4445-A9C4-033A24E25308}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
EndGlobal
|
||||
|
|
|
|||
13
tests/FilterLists.Api.Tests/ListsControllerTests.cs
Normal file
13
tests/FilterLists.Api.Tests/ListsControllerTests.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using Xunit;
|
||||
|
||||
namespace FilterLists.Api.Tests
|
||||
{
|
||||
public class ListsControllerTests
|
||||
{
|
||||
[Fact]
|
||||
public void MyTest()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
13
tests/FilterLists.Data.Tests/ListRepositoryTests.cs
Normal file
13
tests/FilterLists.Data.Tests/ListRepositoryTests.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using Xunit;
|
||||
|
||||
namespace FilterLists.Data.Tests
|
||||
{
|
||||
public class ListRepositoryTests
|
||||
{
|
||||
[Fact]
|
||||
public void MyTest()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Moq" Version="4.7.142" />
|
||||
<PackageReference Include="xunit" Version="2.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
13
tests/FilterLists.Services.Tests/ListServiceTests.cs
Normal file
13
tests/FilterLists.Services.Tests/ListServiceTests.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using Xunit;
|
||||
|
||||
namespace FilterLists.Services.Tests
|
||||
{
|
||||
public class ListServiceTests
|
||||
{
|
||||
[Fact]
|
||||
public void MyTest()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue