Files
Skeleton.Test/tests/MiscTest.cs
2024-11-30 20:11:27 +00:00

18 lines
353 B
C#

using System;
namespace Skeleton.Test;
[TestFixture]
public class MiscTest : BaseTest
{
[Test]
public static void LatexStringTest()
{
Assert.That(C33.One.LatexRepresentation,
Is.EqualTo(@"\begin{pmatrix}1&0&0\\0&1&0\\0&0&1\end{pmatrix}")
);
Console.WriteLine(C33.One.PythonRepresentation);
}
}