- add gBase.Client test project

pull/26/head
Simon Gockner 6 years ago
parent 903cb363c7
commit d88ca6be61
  1. 8
      GBase.sln
  2. 19
      Test.GBase.Client/IntegrationTest.cs
  3. 15
      Test.GBase.Client/Test.GBase.Client.csproj

@ -13,7 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GBase.Server", "GBase.Serve
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GBase.Client", "GBase.Client\GBase.Client.csproj", "{5494D39E-779F-497B-8B52-CA6684B194B2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GBase.Logging", "GBase.Logging\GBase.Logging.csproj", "{70581073-AF7C-4AEF-A9B0-518661AFD3B7}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GBase.Logging", "GBase.Logging\GBase.Logging.csproj", "{70581073-AF7C-4AEF-A9B0-518661AFD3B7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.GBase.Client", "Test.GBase.Client\Test.GBase.Client.csproj", "{B9177F55-E615-4421-B5F1-890850AC1B11}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -45,6 +47,10 @@ Global
{70581073-AF7C-4AEF-A9B0-518661AFD3B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{70581073-AF7C-4AEF-A9B0-518661AFD3B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{70581073-AF7C-4AEF-A9B0-518661AFD3B7}.Release|Any CPU.Build.0 = Release|Any CPU
{B9177F55-E615-4421-B5F1-890850AC1B11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B9177F55-E615-4421-B5F1-890850AC1B11}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B9177F55-E615-4421-B5F1-890850AC1B11}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B9177F55-E615-4421-B5F1-890850AC1B11}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -0,0 +1,19 @@
using NUnit.Framework;
namespace Test.GBase.Client
{
[TestFixture]
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void CheckBasicConnectionWithServer()
{
Assert.Pass();
}
}
}

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0"/>
</ItemGroup>
</Project>
Loading…
Cancel
Save