## Version 0.57.24 ## Sample code ```cs public abstract class BaseTest { [Test] public async Task SimpleTest() { await Assert.That(Environment.ProcessorCount).IsGreaterThan(0); } } [InheritsTests] public sealed class DerivedTest : BaseTest { [Test] public async Task ExtraTest() { await Assert.That(Environment.ProcessorCount).IsGreaterThan(0); } } ``` Both tests' sources are listed as the placement of `InheritsTests` instead of the corresponding `Test` attribute for each of the tests.