Skip to content

Commit

Permalink
test: benchmark category
Browse files Browse the repository at this point in the history
  • Loading branch information
andywiecko committed Sep 26, 2023
1 parent 8039aee commit bc6e1ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/TriangulatorEditorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,7 @@ public void PCATransformationGithubIssue31Test()
new((area: 0.0002f, N: 005)),
};

[Test, TestCaseSource(nameof(refineMeshBenchmarkTestData)), Explicit]
[Test, TestCaseSource(nameof(refineMeshBenchmarkTestData)), Explicit, Category("Benchmark")]
public void RefineMeshBenchmarkTest((float area, int N) input)
{
var (area, N) = input;
Expand Down Expand Up @@ -1805,7 +1805,7 @@ public void RefineMeshBenchmarkTest((float area, int N) input)
DelaunayCase(count: 1000, N: 10),
};

[Test, TestCaseSource(nameof(delaunayBenchmarkTestData)), Explicit]
[Test, TestCaseSource(nameof(delaunayBenchmarkTestData)), Explicit, Category("Benchmark")]
public void DelaunayBenchmarkTest((int count, int N) input)
{
var (count, N) = input;
Expand Down Expand Up @@ -1850,7 +1850,7 @@ public void DelaunayBenchmarkTest((int count, int N) input)
.Select(i => new TestCaseData((100, 3 * (i + 1))))
.ToArray();

[Test, TestCaseSource(nameof(constraintBenchmarkTestData)), Explicit]
[Test, TestCaseSource(nameof(constraintBenchmarkTestData)), Explicit, Category("Benchmark")]
public void ConstraintBenchmarkTest((int count, int N) input)
{
var (count, N) = input;
Expand Down

0 comments on commit bc6e1ac

Please sign in to comment.