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 @@ -53,6 +53,7 @@ public void IsSupported()

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)]
public void StartStopCreatesActivity()
{
using ActivityEventListener l = new ActivityEventListener();
Expand All @@ -69,6 +70,7 @@ public void StartStopCreatesActivity()

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)]
public async Task ActivityFlowsAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand Down Expand Up @@ -118,6 +120,7 @@ private async Task YieldTwoActivitiesDeep(ActivityEventSource es)
// Compare with SetCurrentActivityIdAfterEventDoesNotFlowAsync below.
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)]
public async Task SetCurrentActivityIdBeforeEventFlowsAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand All @@ -144,6 +147,7 @@ public async Task SetCurrentActivityIdBeforeEventFlowsAsync()
// Compare with SetCurrentActivityIdBeforeEventFlowsAsync above.
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)]
public async Task SetCurrentActivityIdAfterEventDoesNotFlowAsync()
{
using ActivityEventListener l = new ActivityEventListener();
Expand Down
Loading