Cosmos/source2/Users/Kudzu/Breakpoints/Test.cs
kudzu_cp 6c36b8c781
2012-06-14 04:55:41 +00:00

18 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Playground.Kudzu.BreakpointsKernel {
public abstract class Test {
public abstract void Run();
public void Chk(bool aTest) {
if (!aTest) {
throw new Exception("Test failed.");
}
}
}
}