Version
0.57.24
Sample code
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.
Version
0.57.24
Sample code
Both tests' sources are listed as the placement of
InheritsTestsinstead of the correspondingTestattribute for each of the tests.