Skip to content

Commit

Permalink
marking Gateway tests as Explicit due to URL ACL requriements
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroservienti committed Jul 22, 2015
1 parent 6bd5896 commit 88ed0d2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class When_doing_request_response_between_sites : NServiceBusAcceptanceTest
{
[Test]
[Test, Explicit( "This tests requires URLS ACL to be set on the Agent" )]
public void Callback_should_be_fired()
{
var context = new Context();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class When_doing_request_response_with_databus_between_sites : NServiceBu
{
static readonly byte[] PayloadToSend = new byte[1024 * 1024 * 10];

[Test]
[Test, Explicit("This tests requires URLS ACL to be set on the Agent")]
public void Should_be_able_to_reply_to_the_message_using_databus()
{
Scenario.Define<Context>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class When_doing_request_return : NServiceBusAcceptanceTest
{
[Test]
[Test, Explicit( "This tests requires URLS ACL to be set on the Agent" )]
public void Callback_should_be_fired()
{
var context = new Context();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public class When_sending_a_message_to_another_site : NServiceBusAcceptanceTest
{
[Test]
[Test, Explicit( "This tests requires URLS ACL to be set on the Agent" )]
public void Should_be_able_to_reply_to_the_message()
{
Scenario.Define<Context>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class When_sending_a_message_via_the_gateway : NServiceBusAcceptanceTest
{
[Test]
[Test, Explicit( "This tests requires URLS ACL to be set on the Agent" )]
public void Should_process_message()
{
Scenario.Define<Context>()
Expand Down

0 comments on commit 88ed0d2

Please sign in to comment.