mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
9 lines
169 B
C#
9 lines
169 B
C#
namespace Cosmos.TestRunner
|
|
{
|
|
public enum TestChannelCommandEnum
|
|
{
|
|
TestCompleted = 0,
|
|
TestFailed = 1,
|
|
AssertionSucceeded = 2,
|
|
}
|
|
}
|