Skip to content

Commit 1740cd3

Browse files
committed
[ksqlDB.RestApi.Client.ProtoBuf]: added ksqlDB.RestApi.Client.ProtoBuf unit tests project
1 parent d65c54e commit 1740cd3

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<LangVersion>10.0</LangVersion>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
10+
11+
<PropertyGroup>
12+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<PackageReference Include="FluentAssertions" />
17+
<PackageReference Include="Microsoft.Reactive.Testing" />
18+
<PackageReference Include="Moq" />
19+
<PackageReference Include="MSTest.TestAdapter" />
20+
<PackageReference Include="MSTest.TestFramework" />
21+
<PackageReference Include="NUnit" />
22+
<PackageReference Include="NUnit3TestAdapter" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" />
24+
<PackageReference Include="Microsoft.Extensions.Logging" />
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<ProjectReference Include="..\..\ksqlDb.RestApi.Client.ProtoBuf\ksqlDB.RestApi.Client.ProtoBuf.csproj" />
29+
<ProjectReference Include="..\UnitTests\UnitTests.csproj" />
30+
</ItemGroup>
31+
32+
<ItemGroup>
33+
<InternalsVisibleTo Include="ksqlDB.RestApi.Client.ProtoBuf.Tests" />
34+
</ItemGroup>
35+
</Project>

ksqlDb.RestApi.Client.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionIt
2626
EndProject
2727
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ksqlDb.RestApi.Client.ProtoBuf", "ksqlDb.RestApi.Client.ProtoBuf\ksqlDb.RestApi.Client.ProtoBuf.csproj", "{304FA9F7-9B0F-49FD-8CB5-B3286C1F988E}"
2828
EndProject
29+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ksqlDb.RestApi.Client.ProtoBuf.Tests", "Tests\ksqlDb.RestApi.Client.ProtoBuf.Tests\ksqlDb.RestApi.Client.ProtoBuf.Tests.csproj", "{7462D56C-A4AA-4347-BE2A-A6B0F84BE426}"
30+
EndProject
2931
Global
3032
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3133
Debug|Any CPU = Debug|Any CPU
@@ -56,6 +58,10 @@ Global
5658
{304FA9F7-9B0F-49FD-8CB5-B3286C1F988E}.Debug|Any CPU.Build.0 = Debug|Any CPU
5759
{304FA9F7-9B0F-49FD-8CB5-B3286C1F988E}.Release|Any CPU.ActiveCfg = Release|Any CPU
5860
{304FA9F7-9B0F-49FD-8CB5-B3286C1F988E}.Release|Any CPU.Build.0 = Release|Any CPU
61+
{7462D56C-A4AA-4347-BE2A-A6B0F84BE426}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
62+
{7462D56C-A4AA-4347-BE2A-A6B0F84BE426}.Debug|Any CPU.Build.0 = Debug|Any CPU
63+
{7462D56C-A4AA-4347-BE2A-A6B0F84BE426}.Release|Any CPU.ActiveCfg = Release|Any CPU
64+
{7462D56C-A4AA-4347-BE2A-A6B0F84BE426}.Release|Any CPU.Build.0 = Release|Any CPU
5965
EndGlobalSection
6066
GlobalSection(SolutionProperties) = preSolution
6167
HideSolutionNode = FALSE
@@ -65,6 +71,7 @@ Global
6571
{1B81259E-59F0-48E1-ACD3-A3DCFCCC5B3E} = {08E77D02-0DE4-49A5-ACAB-B6DF7E56D405}
6672
{EE55516C-160D-4715-ADC6-3E76DE3D89E9} = {08E77D02-0DE4-49A5-ACAB-B6DF7E56D405}
6773
{9AD222F8-4535-4297-A4F8-9F40FFA8A133} = {AA5681E8-1682-47E9-9159-4AE95A92E694}
74+
{7462D56C-A4AA-4347-BE2A-A6B0F84BE426} = {08E77D02-0DE4-49A5-ACAB-B6DF7E56D405}
6875
EndGlobalSection
6976
GlobalSection(ExtensibilityGlobals) = postSolution
7077
SolutionGuid = {08C8585D-5006-4484-AC12-72B1F42058D7}

0 commit comments

Comments
 (0)