Skip to content

Commit

Permalink
Marked NoDB and MsSql event store tests as "integration" with the Cat…
Browse files Browse the repository at this point in the history
…egoryAttribute of NUnit.
  • Loading branch information
pjvds committed Nov 1, 2010
1 parent 7fdbda8 commit f250915
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

namespace Ncqrs.Eventing.Storage.NoDB.Tests.EventStoreTests
{
[Category("Integration")]
public abstract class NoDBEventStoreTestFixture
{
protected NoDBEventStore EventStore;
Expand Down Expand Up @@ -35,7 +36,7 @@ public void BaseSetup()
Source.Stub(e => e.GetUncommittedEvents()).Return(Events);
EventStore.Save(Source);
}

[TestFixtureTearDown]
public void TearDown()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace Ncqrs.Tests.Eventing.Storage.SQL
{
[TestFixture]
[Category("Integration")]
public class MsSqlServerEventStoreTests
{
[Serializable]
Expand Down

0 comments on commit f250915

Please sign in to comment.