Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TestKit and TestKit.Xunit2 to the api spec #7060

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/core/Akka.API.Tests/Akka.API.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
<ProjectReference Include="..\..\contrib\persistence\Akka.Persistence.Query.InMemory\Akka.Persistence.Query.InMemory.csproj" />
<ProjectReference Include="..\..\contrib\persistence\Akka.Persistence.Query.Sql\Akka.Persistence.Query.Sql.csproj" />
<ProjectReference Include="..\..\contrib\persistence\Akka.Persistence.Sql.Common\Akka.Persistence.Sql.Common.csproj" />
<ProjectReference Include="..\..\contrib\testkits\Akka.TestKit.Xunit2\Akka.TestKit.Xunit2.csproj" />
<ProjectReference Include="..\Akka.Coordination\Akka.Coordination.csproj" />
<ProjectReference Include="..\Akka.Discovery\Akka.Discovery.csproj" />
<ProjectReference Include="..\Akka.Persistence.Query\Akka.Persistence.Query.csproj" />
<ProjectReference Include="..\Akka.TestKit\Akka.TestKit.csproj" />
<ProjectReference Include="..\Akka\Akka.csproj" />
<ProjectReference Include="..\Akka.Cluster\Akka.Cluster.csproj" />
<ProjectReference Include="..\..\contrib\cluster\Akka.Cluster.Tools\Akka.Cluster.Tools.csproj" />
Expand Down
14 changes: 14 additions & 0 deletions src/core/Akka.API.Tests/CoreAPISpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
using Akka.Persistence.Query.Sql;
using Akka.Persistence.Sql.Common.Journal;
using Akka.Streams;
using Akka.TestKit;
using VerifyXunit;

namespace Akka.API.Tests
Expand Down Expand Up @@ -124,5 +125,18 @@ public Task ApproveDiscovery()
{
return VerifyAssembly<Discovery.Lookup>();
}

[Fact]
public Task ApproveTestKit()
{
return VerifyAssembly<TestKitBase>();
}


[Fact]
public Task ApproveTestKitXunit2()
{
return VerifyAssembly<TestKit.Xunit2.TestKit>();
}
}
}
Loading
Loading