mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
Robust.UnitTesting was both ALL tests for RT, and also API surface for content tests. Tests are now split into separate projects as appropriate, and the API side has also been split off.
21 lines
531 B
C#
21 lines
531 B
C#
using NUnit.Framework;
|
|
|
|
namespace Robust.UnitTesting.Shared.Serialization
|
|
{
|
|
[TestFixture]
|
|
[NonParallelizable]
|
|
internal sealed class SerializationShutdownTest : OurSerializationTest
|
|
{
|
|
[Test]
|
|
public void SerializationInitializeShutdownInitializeTest()
|
|
{
|
|
Assert.DoesNotThrow(() =>
|
|
{
|
|
// First initialize is done in the parent class
|
|
Serialization.Shutdown();
|
|
Serialization.Initialize();
|
|
});
|
|
}
|
|
}
|
|
}
|