NUnit1034 doesn't detect using `IntermediateTest` as a base class in the following example: ```cs public abstract class BaseTest { [Test] public void Test1() { } } public class IntermediateTest : BaseTest; public class DerivedTest : IntermediateTest; ```