mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 23:02:34 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
22 lines
613 B
C#
22 lines
613 B
C#
using System.Text.Json;
|
|
using NUnit.Framework;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.UnitTesting.Shared.Maths
|
|
{
|
|
[TestFixture]
|
|
[Parallelizable]
|
|
[TestOf(typeof(Vector2u))]
|
|
public sealed class Vector2u_Test
|
|
{
|
|
// This test basically only exists because RSI loading needs it.
|
|
[Test]
|
|
public void TestJsonDeserialization()
|
|
{
|
|
Assert.That(
|
|
JsonSerializer.Deserialize<Vector2u>("{\"x\": 10, \"y\": 10}",
|
|
new JsonSerializerOptions(JsonSerializerDefaults.Web)), Is.EqualTo(new Vector2u(10, 10)));
|
|
}
|
|
}
|
|
}
|