Replies: 1 comment 4 replies
-
Not sure I follow. BUnit does not "find tests". Thats up to the test framework you are using, e.g. xUnit. BUnit is a library that you use in your tests, not a test runner. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I currently want to set up a test context with some very common functionality which I would like to share between multiple projects. So I made a private nuget package out of it but if I try to inherit from it in my project in which I actually want to test something bUnit seems to not be able to find any test inheriting from the custom test context.
Before that I had the exact same test context inside my actual test project in which the test context worked perfectly fine. Is that some limitation or is there anything I overlooked? I thought maybe it can't find the assemblies of it and I can add them to bUnit to find somehow?
Beta Was this translation helpful? Give feedback.
All reactions