Skip to content
Draft
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 @@ -35,6 +35,7 @@
using System.Text.Json;
using MorganStanley.ComposeUI.Fdc3.DesktopAgent.Tests.TestData;
using static MorganStanley.ComposeUI.Fdc3.DesktopAgent.Tests.TestData.TestAppDirectoryData;
using System.Diagnostics;

namespace MorganStanley.ComposeUI.Fdc3.DesktopAgent.Tests.Infrastructure.Internal;

Expand Down Expand Up @@ -733,6 +734,12 @@ public async Task HandleGetIntentResult_succeeds_with_channel()

var raiseIntentResult = await _fdc3.HandleRaiseIntent(raiseIntentRequest, new MessageContext());
raiseIntentResult.Should().NotBeNull();

if (raiseIntentResult?.Error != null)
{
Debug.WriteLine($"Error occurred while executing test: HandleGetIntentResult_succeeds_with_channel; error: {raiseIntentResult.Error}");
Console.WriteLine($"Error occurred while executing test: HandleGetIntentResult_succeeds_with_channel; error: {raiseIntentResult.Error}");
}
raiseIntentResult!.AppMetadata.Should().NotBeNull();

var storeIntentRequest = new StoreIntentResultRequest
Expand Down
Loading