AxoCover icon indicating copy to clipboard operation
AxoCover copied to clipboard

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

Open tonyhallett opened this issue 7 years ago • 0 comments

Given

`[TestFixture] internal abstract class AtMost_Tests<TWrapped,TVerifiable>: VerifiableWrappers_Returns_Tests_Base<TWrapped, IVerifies, TVerifiable> where TWrapped :class, IOccurrence where TVerifiable : Verifiable<TWrapped>, 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

tonyhallett avatar Nov 08 '18 10:11 tonyhallett