12 lines
281 B
C#
12 lines
281 B
C#
using FluentAssertions;
|
|
using NetArchTest.Rules;
|
|
|
|
namespace Mccn.ArchitectureTests.Abstractions;
|
|
|
|
internal static class TestResultExtensions
|
|
{
|
|
internal static void ShouldBeSuccessful(this TestResult testResult)
|
|
{
|
|
testResult.FailingTypes?.Should().BeEmpty();
|
|
}
|
|
} |