Cosmos/source2/Users/Kudzu/Breakpoints/Test.cs
kudzu_cp cbdf0f6624
2011-06-17 02:19:03 +00:00

18 lines
327 B
C#

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