mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
9 lines
175 B
C#
9 lines
175 B
C#
namespace Cosmos.TestRunner
|
|
{
|
|
public enum TestChannelCommandEnum: byte
|
|
{
|
|
TestCompleted = 0,
|
|
TestFailed = 1,
|
|
AssertionSucceeded = 2,
|
|
}
|
|
}
|