-
I'm just getting started with using the Architecture test plugin and I was trying to find an easy way to do the following?
Basically, I want to run expectation on a namespace but provide exceptions to the rule I'm testing for. I think this would be handy for excluding things like Anyone know if this is this currently possible and maybe just missing something here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Is the arch('app')
->expect('Tests\Unit')
->toHaveSuffix('Test')
->ignoring('Tests\Unit\UnitTestCase'); |
Beta Was this translation helpful? Give feedback.
-
That did the trick! Thank you @owenvoke! |
Beta Was this translation helpful? Give feedback.
Is the
ignoring()
method what you're looking for?