onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Application.SharedKernel.Tests/AmbientContexts/TestableAmbientContextAccessor.cs

Summary

Maintainability
A
0 mins
Test Coverage
using OneBeyond.Studio.Application.SharedKernel.AmbientContexts;

namespace OneBeyond.Studio.Application.SharedKernel.Tests.AmbientContexts;

internal sealed class TestableAmbientContextAccessor : IAmbientContextAccessor<TestableAmbientContext>
{
    public TestableAmbientContext AmbientContext => new("42");
}