TngTech.ArchUnitNET.MSTestV2
0.10.5
See the version list below for details.
dotnet add package TngTech.ArchUnitNET.MSTestV2 --version 0.10.5
NuGet\Install-Package TngTech.ArchUnitNET.MSTestV2 -Version 0.10.5
<PackageReference Include="TngTech.ArchUnitNET.MSTestV2" Version="0.10.5" />
paket add TngTech.ArchUnitNET.MSTestV2 --version 0.10.5
#r "nuget: TngTech.ArchUnitNET.MSTestV2, 0.10.5"
// Install TngTech.ArchUnitNET.MSTestV2 as a Cake Addin #addin nuget:?package=TngTech.ArchUnitNET.MSTestV2&version=0.10.5 // Install TngTech.ArchUnitNET.MSTestV2 as a Cake Tool #tool nuget:?package=TngTech.ArchUnitNET.MSTestV2&version=0.10.5
<img src="Logo/ArchUnitNET-Logo.png" height="64" alt="ArchUnit">
ArchUnitNET
Visit our documentation at https://archunitnet.readthedocs.io/en/latest/.
ArchUnitNET is a free, simple library for checking the architecture of C# code. It is the C# fork of https://www.archunit.org/ for Java. ArchUnitNET can check dependencies between classes, members, interfaces, and more. This is done by analyzing C# bytecode and importing all classes into our C# code structure. The main focus of ArchUnitNET is to automatically test architecture and coding rules.
An Example
To use ArchUnitNET, install the ArchUnitNET package from NuGet:
PS> Install-Package ArchUnitNET
If you want to use xUnit, NUnit or MSTestV2 for your unit tests, you should instead install the corresponding ArchUnit extension:
PS> Install-Package ArchUnitNET.xUnit
PS> Install-Package ArchUnitNET.NUnit
PS> Install-Package ArchUnitNET.MSTestV2
Create a Test
Then you will want to create a class to start testing. We used xUnit with the ArchUnit extension here, but it works similarly with NUnit or other Unit Test Frameworks.
using ArchUnitNET.Domain;
using ArchUnitNET.Loader;
using ArchUnitNET.Fluent;
using Xunit;
//add a using directive to ArchUnitNET.Fluent.ArchRuleDefinition to easily define ArchRules
using static ArchUnitNET.Fluent.ArchRuleDefinition;
namespace ExampleTest
{
public class ExampleArchUnitTest
{
// TIP: load your architecture once at the start to maximize performance of your tests
private static readonly Architecture Architecture = new ArchLoader().LoadAssemblies(
System.Reflection.Assembly.Load("ExampleClassAssemblyName")
System.Reflection.Assembly.Load("ForbiddenClassAssemblyName")
.Build();
// replace <ExampleClass> and <ForbiddenClass> with classes from the assemblies you want to test
//declare variables you'll use throughout your tests up here
//use As() to give them a custom description
private readonly IObjectProvider<IType> ExampleLayer =
Types().That().ResideInAssembly("ExampleAssembly").As("Example Layer");
private readonly IObjectProvider<Class> ExampleClasses =
Classes().That().ImplementInterface("IExampleInterface").As("Example Classes");
private readonly IObjectProvider<IType> ForbiddenLayer =
Types().That().ResideInNamespace("ForbiddenNamespace").As("Forbidden Layer");
private readonly IObjectProvider<Interface> ForbiddenInterfaces =
Interfaces().That().HaveFullNameContaining("forbidden").As("Forbidden Interfaces");
//write some tests
[Fact]
public void TypesShouldBeInCorrectLayer()
{
//you can use the fluent API to write your own rules
IArchRule exampleClassesShouldBeInExampleLayer =
Classes().That().Are(ExampleClasses).Should().Be(ExampleLayer);
IArchRule forbiddenInterfacesShouldBeInForbiddenLayer =
Interfaces().That().Are(ForbiddenInterfaces).Should().Be(ForbiddenLayer);
//check if your architecture fulfils your rules
exampleClassesShouldBeInExampleLayer.Check(Architecture);
forbiddenInterfacesShouldBeInForbiddenLayer.Check(Architecture);
//you can also combine your rules
IArchRule combinedArchRule =
exampleClassesShouldBeInExampleLayer.And(forbiddenInterfacesShouldBeInForbiddenLayer);
combinedArchRule.Check(Architecture);
}
[Fact]
public void ExampleLayerShouldNotAccessForbiddenLayer()
{
//you can give your rules a custom reason, which is displayed when it fails
//(together with the types that failed the rule)
IArchRule exampleLayerShouldNotAccessForbiddenLayer = Types().That().Are(ExampleLayer).Should()
.NotDependOnAny(ForbiddenLayer).Because("it's forbidden");
exampleLayerShouldNotAccessForbiddenLayer.Check(Architecture);
}
[Fact]
public void ForbiddenClassesShouldHaveCorrectName()
{
Classes().That().AreAssignableTo(ForbiddenInterfaces).Should().HaveNameContaining("forbidden")
.Check(Architecture);
}
[Fact]
public void ExampleClassesShouldNotCallForbiddenMethods()
{
Classes().That().Are(ExampleClasses).Should().NotCallAny(
MethodMembers().That().AreDeclaredIn(ForbiddenLayer).Or().HaveNameContaining("forbidden"))
.Check(Architecture);
}
}
}
Further Info and Help
Check out test examples for the current release at ArchUnitNET Examples.
License
ArchUnitNET is published under the Apache License 2.0. For more information concerning the license, see Apache License 2.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- Microsoft.NET.Test.Sdk (>= 16.9.4)
- MSTest.TestFramework (>= 2.2.3)
- TngTech.ArchUnitNET (>= 0.10.5)
-
.NETStandard 2.0
- Microsoft.NET.Test.Sdk (>= 16.9.4)
- MSTest.TestFramework (>= 2.2.3)
- TngTech.ArchUnitNET (>= 0.10.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on TngTech.ArchUnitNET.MSTestV2:
Repository | Stars |
---|---|
nager/Nager.Date
Worldwide holidays (REST API), NuGet or docker container :earth_americas:
|
Version | Downloads | Last updated |
---|---|---|
0.11.1 | 607 | 10/25/2024 |
0.11.0 | 5,380 | 8/23/2024 |
0.11.0-preview.1 | 75 | 8/19/2024 |
0.10.6 | 105,411 | 7/12/2023 |
0.10.5 | 48,436 | 11/12/2022 |
0.10.4 | 2,651 | 8/7/2022 |
0.10.3 | 869 | 8/3/2022 |
0.10.2 | 853 | 7/31/2022 |
0.10.1 | 4,197 | 4/29/2022 |
0.10.0 | 868 | 4/27/2022 |
0.9.1 | 920 | 3/7/2022 |
0.9.0 | 738 | 12/1/2021 |
0.8.5 | 664 | 12/1/2021 |
0.8.4 | 804 | 10/19/2021 |
0.8.3 | 746 | 10/7/2021 |
0.8.2 | 1,222 | 9/28/2021 |
0.8.1 | 773 | 9/27/2021 |
0.8.0 | 818 | 9/20/2021 |
0.7.3 | 806 | 9/20/2021 |
0.7.2 | 807 | 8/30/2021 |
0.7.1 | 761 | 8/25/2021 |
0.7.0 | 768 | 7/22/2021 |
0.6.2 | 723 | 7/22/2021 |
0.6.1 | 849 | 6/18/2021 |
0.6.0 | 793 | 6/10/2021 |
0.5.6 | 828 | 5/21/2021 |
0.5.5 | 878 | 5/20/2021 |