Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get all method members calls? #136

Open
kristofferjalen opened this issue Dec 20, 2023 · 1 comment
Open

Get all method members calls? #136

kristofferjalen opened this issue Dec 20, 2023 · 1 comment

Comments

@kristofferjalen
Copy link

I'm trying to write a test asserting that no (non-test) code is used only for unit tests, just like this guy: https://stackoverflow.com/questions/73166287/check-entire-net-solution-to-verify-code-is-not-only-used-for-test

I can't find out how to get the calling types for a method. In ArchUnitTest there seems to be this:

MethodMembers()
   .That().AreCalledBy(Types().That().ResideInNamespace(".*(?i)Test.*", true) )
   .Should().CallAny(MethodMembers().That().AreDeclaredIn(Types().That()
              .ResideInNamespace("^MyTypes.*", true)
              .And().DoNotResideInNamespace(".*(?i)Test.*", true)))
@NeVeSpl
Copy link
Contributor

NeVeSpl commented Dec 20, 2023

NetArchTest does not have the equivalent of AreCalledBy, and it always operates on a type level.

In NetArchTest.eNhancedEdition there is AreUsedByAny, thus it is possible to write smth like this:

var result = Types.InAssembly(typeof(AppTests).Assembly, loadReferencedAssemblies: true)
         .That()
         .AreUsedByAny("AppTests")
         .And()
         .DoNotResideInNamespace("AppTests")
         .Should()
         .BeUsedByAny("App")
         .GetResult();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants