mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
21 lines
519 B
C#
21 lines
519 B
C#
using NUnit.Framework;
|
|
|
|
namespace Robust.UnitTesting.Shared.Serialization
|
|
{
|
|
[TestFixture]
|
|
[NonParallelizable]
|
|
public class SerializationShutdownTest : SerializationTest
|
|
{
|
|
[Test]
|
|
public void SerializationInitializeShutdownInitializeTest()
|
|
{
|
|
Assert.DoesNotThrow(() =>
|
|
{
|
|
// First initialize is done in the parent class
|
|
Serialization.Shutdown();
|
|
Serialization.Initialize();
|
|
});
|
|
}
|
|
}
|
|
}
|