I think I have a basic misunderstanding of the way OpenCover (or coverage in general) is working.
I think that classes without any tests are not counted in the coverage, which is very strange.
for example, if I have two classes (lets say of the same number of lines) and one is fully covered while the other has NO UT written, I expect to get 50% coverage, but I believe that I am getting 100%. This doesn't make sense to me.
So I have 2-3 questions:
Thank you for you help, Roy.
I suspect the assembly is not loaded and so it (and all the classes within it) are not seen by OpenCover.
Simplest way is to add tests for at least one type in each assembly you wish to get coverage for.