Skip to content

Commit

Permalink
Add unit to check client dispose + Change version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
P-H-Maillefer committed Aug 23, 2022
1 parent 440dcb0 commit 5b5d883
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/DotNet/Woopsa/Woopsa.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard2.0' ">2.0.0</NetStandardImplicitPackageVersion>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<VersionPrefix>1.3.1</VersionPrefix>
<VersionPrefix>1.3.2</VersionPrefix>
<Copyright></Copyright>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
Expand Down
7 changes: 7 additions & 0 deletions Sources/DotNet/WoopsaTest/UnitTestWoopsaClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ public class UnitTestWoopsaClient

#endregion

[TestMethod]
public void TestClientSimpleInstanciationAndDispose()
{
using (WoopsaClient client = new WoopsaClient("http://localhost:10000/woopsa"))
{ }
}

[TestMethod]
public void TestWoopsaClientSubscriptionChannel()
{
Expand Down

0 comments on commit 5b5d883

Please sign in to comment.