Skip to content

Commit

Permalink
using testoutputhelper
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutando committed Jul 27, 2019
1 parent 2622a9a commit 181d08e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added
- xUnit2 TestOutputHelper logging
- Akkatecture.Clustering Multi Node Tests
- FAKE build system
- Delete Previous Snapshot
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ Akka.net gives us a wealth of good APIs out of the box that can be used to build

Akkatecture uses the methods of [Keep A Changelog](https://github.com/olivierlacan/keep-a-changelog) to keep track of features or functionality that has been added, changed, deprecated, removed, fixed, or patched for security reasons. The changelog also serves as a source of truth for the project's [release notes](https://github.com/Lutando/Akkatecture/releases).

## PreRelease and Nightly Builds
Prerelease feeds and nightly feeds (called alpha feeds in this project). Provide the most up to date packages for the project. Roughly speaking the prerelease feed is the most up to date packages that reflect master, and the nightly feed reflects the most up to packages derived from the dev branch. The feeds are:

**Prerelease Feed** - https://pkgs.dev.azure.com/lutando/Akkatecture/_packaging/prerelease/nuget/v3/index.json

**Nightly Feed** - https://pkgs.dev.azure.com/lutando/Akkatecture/_packaging/alpha/nuget/v3/index.json

## Acknowledgements

- [Akka.NET](https://github.com/akkadotnet/akka.net) - The project which AKkatecture builds ontop of, without akka.net, Akkatecture wouldnt exist.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class AggregateSagaTests : TestKit
{
private const string Category = "Sagas";
public AggregateSagaTests(ITestOutputHelper testOutputHelper)
: base(TestHelpers.Akka.Configuration.Config,"aggregate-saga-tests", testOutputHelper)
: base(TestHelpers.Akka.Configuration.Config, "aggregate-saga-tests", testOutputHelper)
{

}
Expand Down
5 changes: 3 additions & 2 deletions test/Akkatecture.Tests/UnitTests/Aggregates/AggregateTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
using Akkatecture.TestHelpers.Aggregates.Events.Signals;
using FluentAssertions;
using Xunit;
using Xunit.Abstractions;

namespace Akkatecture.Tests.UnitTests.Aggregates
{
Expand All @@ -44,8 +45,8 @@ public class AggregateTests : TestKit
{
private const string Category = "Aggregates";

public AggregateTests()
: base(TestHelpers.Akka.Configuration.Config,"aggregate-tests")
public AggregateTests(ITestOutputHelper testOutputHelper)
: base(TestHelpers.Akka.Configuration.Config, "aggregate-tests", testOutputHelper)
{

}
Expand Down

0 comments on commit 181d08e

Please sign in to comment.