Hona.ArchitectureTests.Runner 1.1.0

dotnet add package Hona.ArchitectureTests.Runner --version 1.1.0                
NuGet\Install-Package Hona.ArchitectureTests.Runner -Version 1.1.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Hona.ArchitectureTests.Runner" Version="1.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Hona.ArchitectureTests.Runner --version 1.1.0                
#r "nuget: Hona.ArchitectureTests.Runner, 1.1.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Hona.ArchitectureTests.Runner as a Cake Addin
#addin nuget:?package=Hona.ArchitectureTests.Runner&version=1.1.0

// Install Hona.ArchitectureTests.Runner as a Cake Tool
#tool nuget:?package=Hona.ArchitectureTests.Runner&version=1.1.0                

Hona.ArchitectureTests

Usage

The most simple way to use the library is to use the predefined architecture suites.

[Fact]
public void CleanArchitecture()
{
    Ensure.CleanArchitecture(x =>
    {
        x.Presentation = new TypesPart([typeof(ConsolePresenter), typeof(Program), typeof(LogHelper)]);
        x.Application = new AggregatePart(
        [
            new NamespacePart(SampleAppAssembly, ".Jobs"),
            new NamespacePart(SampleAppAssembly, ".Services")
        ]);
        x.Domain = new NamespacePart(SampleAppAssembly, ".Models");
        x.Infrastructure = new AggregatePart(
        [
            new NamespacePart(SampleAppAssembly, ".Data"),
            new AssemblyPart(typeof(WebApiClient).Assembly)
        ]);
    }).Assert();
}

For custom architectures, you can define application parts, then setup the rules. For example a basic 'Clean Architecture' implementation without the suite, would look like this

private static readonly Assembly SampleAppAssembly = typeof(ISampleApp).Assembly;

private static readonly IApplicationPart Presentation =
    new TypesPart([typeof(ConsolePresenter), typeof(Program), typeof(LogHelper)]);

private static readonly IApplicationPart Application =
    new NamespacePart(SampleAppAssembly, ".Jobs");

private static readonly IApplicationPart Domain =
    new NamespacePart(SampleAppAssembly, ".Models");

private static readonly IApplicationPart Infrastructure =
    new NamespacePart(SampleAppAssembly, ".Data");

[Fact]
public void Presentation_DependsOn_Application()
{
    Ensure.That(Presentation)
        .DependsOn(Application)
        .Assert();
}

[Fact]
public void Application_DependsOn_Domain()
{
    Ensure.That(Application)
        .DependsOn(Domain)
        .Assert();
}

[Fact]
public void Infrastructure_DependsOn_Application()
{
    Ensure.That(Infrastructure)
        .DependsOn(Application)
        .Assert();
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 116 6/15/2024