Multiple projects with tests in single test session #1662
-
We have many different projects that currently reference I've tried changing the existing projects' dependency to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Probably due to how .NET loads assemblies. My understanding is an assembly only gets loaded when a type or something from it is first referenced. In your main project that will be the runner, try creating a E.g.
|
Beta Was this translation helpful? Give feedback.
Probably due to how .NET loads assemblies. My understanding is an assembly only gets loaded when a type or something from it is first referenced.
In your main project that will be the runner, try creating a
[Before(TestDiscovery)]
and then inside it reference types from your referencing projects. Even a console write line should do it.E.g.