Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user