You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to write Rules like
Assemblies().That().Rererence(...)
You can do that with types but then you can have the assembly reference and the test will not fail if no type is used.
privatestaticboolIsInTestAssembly(ITypetype)=> type.Assembly.Attributes.Any(a => a.Name == nameof(TestAssemblyAttribute));privatestaticIObjectProvider<IType>TypesResidingingInTestAssemblies= Types().That().FollowCustomPredicate(IsInTestAssembly,"Are in test assembly.");
The text was updated successfully, but these errors were encountered:
It would be nice to be able to write Rules like
Assemblies().That().Rererence(...)
You can do that with types but then you can have the assembly reference and the test will not fail if no type is used.
The text was updated successfully, but these errors were encountered: