Files
RobustToolbox/Robust.Shared.IntegrationTests/Physics/Shape_Test.cs
PJB3005 788e9386fd Split up test project
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.
2025-12-16 01:36:53 +01:00

34 lines
1.1 KiB
C#

using System;
using System.Numerics;
using NUnit.Framework;
using Robust.Shared.Physics.Collision.Shapes;
namespace Robust.UnitTesting.Shared.Physics
{
[TestFixture]
[TestOf(typeof(IPhysShape))]
internal sealed class Shape_Test : OurRobustUnitTest
{
[Test]
public void TestPolyNormals()
{
var poly = new PolygonShape();
Span<Vector2> verts = stackalloc Vector2[4];
verts[0] = new Vector2(1f, -1f);
verts[1] = new Vector2(1f, 1f);
verts[2] = new Vector2(-1f, 1f);
verts[3] = new Vector2(-1f, -1f);
poly.Set(verts, 4);
Assert.That(poly.VertexCount == 4);
Assert.That(poly.Normals[0], Is.EqualTo(new Vector2(1, 0)), $"Vert is {poly.Vertices[0]}");
Assert.That(poly.Normals[1], Is.EqualTo(new Vector2(0, 1)), $"Vert is {poly.Vertices[1]}");
Assert.That(poly.Normals[2], Is.EqualTo(new Vector2(-1, 0)), $"Vert is {poly.Vertices[2]}");
Assert.That(poly.Normals[3], Is.EqualTo(new Vector2(0, -1)), $"Vert is {poly.Vertices[3]}");
}
}
}