diff --git a/GBase.sln b/GBase.sln index 24e853f..4cb5206 100644 --- a/GBase.sln +++ b/GBase.sln @@ -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 diff --git a/Test.GBase.Client/IntegrationTest.cs b/Test.GBase.Client/IntegrationTest.cs new file mode 100644 index 0000000..6868eac --- /dev/null +++ b/Test.GBase.Client/IntegrationTest.cs @@ -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(); + } + } +} \ No newline at end of file diff --git a/Test.GBase.Client/Test.GBase.Client.csproj b/Test.GBase.Client/Test.GBase.Client.csproj new file mode 100644 index 0000000..e532582 --- /dev/null +++ b/Test.GBase.Client/Test.GBase.Client.csproj @@ -0,0 +1,15 @@ + + + + netcoreapp3.1 + + false + + + + + + + + +