Seal/abstract/virtual everything (#6739)

This commit is contained in:
mirrorcult
2022-02-16 00:23:23 -07:00
committed by GitHub
parent 4dfcacb86a
commit ec4d4688c7
1771 changed files with 2216 additions and 2164 deletions

View File

@@ -15,7 +15,7 @@ namespace Content.IntegrationTests.Tests.Destructible
[TestFixture]
[TestOf(typeof(DamageGroupTrigger))]
[TestOf(typeof(AndTrigger))]
public class DestructibleDamageGroupTest : ContentIntegrationTest
public sealed class DestructibleDamageGroupTest : ContentIntegrationTest
{
[Test]
public async Task AndTest()

View File

@@ -14,7 +14,7 @@ namespace Content.IntegrationTests.Tests.Destructible
[TestFixture]
[TestOf(typeof(DamageTypeTrigger))]
[TestOf(typeof(AndTrigger))]
public class DestructibleDamageTypeTest : ContentIntegrationTest
public sealed class DestructibleDamageTypeTest : ContentIntegrationTest
{
[Test]
public async Task Test()

View File

@@ -13,7 +13,7 @@ using static Content.IntegrationTests.Tests.Destructible.DestructibleTestPrototy
namespace Content.IntegrationTests.Tests.Destructible
{
public class DestructibleDestructionTest : ContentIntegrationTest
public sealed class DestructibleDestructionTest : ContentIntegrationTest
{
[Test]
public async Task Test()

View File

@@ -19,7 +19,7 @@ namespace Content.IntegrationTests.Tests.Destructible
[TestFixture]
[TestOf(typeof(DestructibleComponent))]
[TestOf(typeof(DamageThreshold))]
public class DestructibleThresholdActivationTest : ContentIntegrationTest
public sealed class DestructibleThresholdActivationTest : ContentIntegrationTest
{
[Test]
public async Task Test()

View File

@@ -9,7 +9,7 @@ namespace Content.IntegrationTests.Tests.Destructible
/// This is just a system for testing destructible thresholds. Whenever any threshold is reached, this will add that
/// threshold to a list for checking during testing.
/// </summary>
public class TestDestructibleListenerSystem : EntitySystem
public sealed class TestDestructibleListenerSystem : EntitySystem
{
public readonly List<DamageThresholdReached> ThresholdsReached = new();