Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.
License
—
Deps
30
Install Size
—
Vulns
✓ 0
Published
Feb 25, 2026
$ dotnet add package AccelergreatCore package containing the contracts and orchestration primitives that other Accelergreat integration packages build on.
Most test projects consume this indirectly through:
Accelergreat.Xunit or Accelergreat.Xunit3Accelergreat.EntityFramework.*, Accelergreat.Web)Reference Accelergreat directly if you are:
public class CustomComponent : IAccelergreatComponent
{
public Task InitializeAsync(IAccelergreatEnvironmentPipelineData environmentData)
{
return Task.CompletedTask;
}
public Task ResetAsync()
{
return Task.CompletedTask;
}
public ValueTask DisposeAsync()
{
return ValueTask.CompletedTask;
}
}
Accelergreat.Xunit or Accelergreat.Xunit3 plus component packages; this package comes transitively.../Accelergreat.Xunit3/README.md