Add Unity Pipeline package support

This commit is contained in:
ud18010
2026-07-31 17:34:04 +08:00
parent d1a526094e
commit 786b7ffff9
590 changed files with 51995 additions and 2 deletions
@@ -0,0 +1,26 @@
using System;
namespace Unity.Pipeline
{
/// <summary>
/// Summary statistics for test execution
/// </summary>
[Serializable]
public class TestSummary
{
public int Total { get; set; }
public int Passed { get; set; }
public int Failed { get; set; }
public int Skipped { get; set; }
public int Inconclusive { get; set; }
public TestSummary()
{
Total = 0;
Passed = 0;
Failed = 0;
Skipped = 0;
Inconclusive = 0;
}
}
}