This commit is contained in:
h z
2024-11-30 20:12:13 +00:00
parent 33e6f36841
commit 6867f06b48
3 changed files with 70 additions and 0 deletions

17
tests/BaseTest.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using Skeleton.Algebra;
namespace Skeleton.Test;
public class BaseTest
{
protected static int Seed = 517515;
protected static class Theory<TDim, TField>
{
public static readonly Action<CategoryOf<TDim>.OnField<TField>.FMatrix> OnFail
= x => Console.WriteLine(x.CSharpRepresentation);
}
//protected static Action<TMatrix> TheoryOnFail<TMatrix>() = x => Console.WriteLine();
}