axodox / AxoCover

Nice and free .Net code coverage support for Visual Studio with OpenCover.
https://marketplace.visualstudio.com/items?itemName=axodox1.AxoCover
MIT License
248 stars 60 forks source link

No navigation to test that provides coverage when test defined by abstract generic base class #185

Open tonyhallett opened 6 years ago

tonyhallett commented 6 years ago

Given

`[TestFixture] internal abstract class AtMost_Tests<TWrapped,TVerifiable>: VerifiableWrappers_Returns_Tests_Base<TWrapped, IVerifies, TVerifiable> where TWrapped :class, IOccurrence where TVerifiable : Verifiable, IOccurrence { [Test] public void AtMost_Should_Wrap_The_Return_From_Wrapped() //which calls the AtMost method on TVerifiable ..... [TestFixture] internal class VerifiableCallBackResult_AtMost_Tests : AtMost_Tests<ICallbackResult, VerifiableCallbackResult> {

}

` image

There is notification that was covered - Visited 1 time(s) but there is no navigation to the test method