A new sibling has joined of the Testing.Commons family.
Testing ServiceStack services
I have reviewed, worked (and presented) extensively on ServiceStack lately.
With work done comes testing your work. And I found ServiceStack to require little plumbing to do integration tests. But there is some. And there, Testing.Commons.ServiceStack can help with your integration tests.
Low barrier testing
- Create a class library project
- Install ServiceStack nuget package (the latest free version):
Install-Package ServiceStack -Version 3.9.71
- Install Testing.Commons.ServieStack nuget package:
Install-Package Testing.Commons.ServiceStack
- Create a test that inherits from either
SingleHostPerFixture
orSingleHostPerTest
- Happy testing!
More?
Go to the documentation page for guidance or, better yet, project’s automated tests.