mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
21 lines
526 B
C#
21 lines
526 B
C#
using NUnit.Framework;
|
|
|
|
namespace Robust.UnitTesting.Shared.Serialization
|
|
{
|
|
[TestFixture]
|
|
[NonParallelizable]
|
|
public sealed class SerializationShutdownTest : SerializationTest
|
|
{
|
|
[Test]
|
|
public void SerializationInitializeShutdownInitializeTest()
|
|
{
|
|
Assert.DoesNotThrow(() =>
|
|
{
|
|
// First initialize is done in the parent class
|
|
Serialization.Shutdown();
|
|
Serialization.Initialize();
|
|
});
|
|
}
|
|
}
|
|
}
|