15 lines
357 B
C#
15 lines
357 B
C#
using FluentAssertions;
|
|
using Xunit;
|
|
namespace StellaOps.Cryptography.Tests;
|
|
public sealed partial class EidasCapabilityDetectionTests
|
|
{
|
|
[Fact]
|
|
public void Provider_Name_IsExpected()
|
|
{
|
|
var provider = CreateProvider();
|
|
provider.Name.Should().Be("eidas");
|
|
|
|
_output.WriteLine($"✓ Provider name: {provider.Name}");
|
|
}
|
|
}
|