1 instantiation of DependencyContextAssertions
Microsoft.NET.TestFramework (1)
Assertions\DependencyContextExtensions.cs (1)
12return new DependencyContextAssertions(dependencyContext);
13 references to DependencyContextAssertions
Microsoft.NET.TestFramework (13)
Assertions\DependencyContextAssertions.cs (12)
18public AndConstraint<DependencyContextAssertions> HaveNoDuplicateRuntimeAssemblies(string runtimeIdentifier) 25return new AndConstraint<DependencyContextAssertions>(this); 28public AndConstraint<DependencyContextAssertions> HaveNoDuplicateNativeAssets(string runtimeIdentifier) 35return new AndConstraint<DependencyContextAssertions>(this); 38public AndConstraint<DependencyContextAssertions> OnlyHaveRuntimeAssemblies(string runtimeIdentifier, params string[] runtimeAssemblyNames) 46return new AndConstraint<DependencyContextAssertions>(this); 49public AndConstraint<DependencyContextAssertions> OnlyHaveRuntimeAssembliesWhichAreInFolder(string runtimeIdentifier, string folder) 59return new AndConstraint<DependencyContextAssertions>(this); 62public AndConstraint<DependencyContextAssertions> OnlyHaveNativeAssembliesWhichAreInFolder(string runtimeIdentifier, string folder, string appName) 80return new AndConstraint<DependencyContextAssertions>(this); 83public AndConstraint<DependencyContextAssertions> OnlyHavePackagesWithPathProperties() 95return new AndConstraint<DependencyContextAssertions>(this);
Assertions\DependencyContextExtensions.cs (1)
10public static DependencyContextAssertions Should(this DependencyContext dependencyContext)