This commit is contained in:
h z
2024-06-21 21:59:13 +08:00
commit 614bc59897
28 changed files with 2049 additions and 0 deletions

17
tests/MiscTest.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
namespace SkeletonTest.tests;
public static class MiscTest
{
[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);
}
}