Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
using System.Text.Json;
using Azure.Mcp.Tests;
using Azure.Mcp.Tests.Client;
using Azure.Mcp.Tests.Client.Helpers;
using Xunit;

namespace Azure.Mcp.Tools.Communication.LiveTests;

[Trait("Command", "SmsSendCommand")]
public class CommunicationCommandTests : CommandTestsBase
public class CommunicationCommandTests (ITestOutputHelper output, TestProxyFixture fixture) : RecordedCommandTestsBase(output, fixture)
{
public CommunicationCommandTests(ITestOutputHelper output) : base(output)
{
}

[Fact]
public async Task Should_SendSms_WithValidParameters()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,14 @@
using System.Text.Json;
using Azure.Mcp.Tests;
using Azure.Mcp.Tests.Client;
using Azure.Mcp.Tests.Client.Helpers;
using Xunit;

namespace Azure.Mcp.Tools.Communication.LiveTests.Email;

[Trait("Command", "EmailSendCommand")]
public class EmailSendCommandLiveTests : CommandTestsBase
public class EmailSendCommandLiveTests (ITestOutputHelper output, TestProxyFixture fixture) : RecordedCommandTestsBase(output, fixture)
{
public EmailSendCommandLiveTests(ITestOutputHelper output) : base(output)
{
}

[Fact]
public async Task Should_SendEmail_WithValidParameters()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "",
"TagPrefix": "Azure.Mcp.Tools.Communication.LiveTests",
"Tag": "Azure.Mcp.Tools.Communication.LiveTests_4bdf66a50b"
}
Loading