From 3d6162504c34dc13060b7119e365069ab54307b5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 7 Jan 2019 17:14:42 -0500 Subject: [PATCH] tsub out core test project --- bitwarden-core.sln | 7 +++++++ test/Core/Core.csproj | 19 +++++++++++++++++++ test/Core/UnitTest1.cs | 14 ++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 test/Core/Core.csproj create mode 100644 test/Core/UnitTest1.cs diff --git a/bitwarden-core.sln b/bitwarden-core.sln index 5ea2a1dce..58905abee 100644 --- a/bitwarden-core.sln +++ b/bitwarden-core.sln @@ -45,6 +45,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Admin", "src\Admin\Admin.cs EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Notifications", "src\Notifications\Notifications.csproj", "{28635027-20E5-42FA-B218-B6C878DE5350}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Core", "test\Core\Core.csproj", "{8EF31E6C-400A-4174-8BE3-502B08FB10B5}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -101,6 +103,10 @@ Global {28635027-20E5-42FA-B218-B6C878DE5350}.Debug|Any CPU.Build.0 = Debug|Any CPU {28635027-20E5-42FA-B218-B6C878DE5350}.Release|Any CPU.ActiveCfg = Release|Any CPU {28635027-20E5-42FA-B218-B6C878DE5350}.Release|Any CPU.Build.0 = Release|Any CPU + {8EF31E6C-400A-4174-8BE3-502B08FB10B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8EF31E6C-400A-4174-8BE3-502B08FB10B5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8EF31E6C-400A-4174-8BE3-502B08FB10B5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8EF31E6C-400A-4174-8BE3-502B08FB10B5}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -118,6 +124,7 @@ Global {2235D24F-E607-47F4-81AD-BB4504ADF9C6} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D} {B131CEF3-89FB-4C90-ADB0-9E9C4246EB56} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D} {28635027-20E5-42FA-B218-B6C878DE5350} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D} + {8EF31E6C-400A-4174-8BE3-502B08FB10B5} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84F} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {E01CBF68-2E20-425F-9EDB-E0A6510CA92F} diff --git a/test/Core/Core.csproj b/test/Core/Core.csproj new file mode 100644 index 000000000..1c8537508 --- /dev/null +++ b/test/Core/Core.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp2.1 + false + Bit.Core.Test + + + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + diff --git a/test/Core/UnitTest1.cs b/test/Core/UnitTest1.cs new file mode 100644 index 000000000..869e0e732 --- /dev/null +++ b/test/Core/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Xunit; + +namespace Bit.Core.Test +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + Assert.True(true); + } + } +}