18 lines
342 B
C#
18 lines
342 B
C#
using System;
|
|
|
|
namespace Skeleton.Test.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);
|
|
}
|
|
|
|
|
|
}
|