Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine.Kernel/Kernel.cs
2015-07-18 02:19:48 +02:00

25 lines
675 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.TestRunner;
using Sys = Cosmos.System;
namespace Cosmos.Compiler.Tests.SimpleWriteLine.Kernel
{
public class Kernel : Sys.Kernel
{
protected override void BeforeRun()
{
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
}
protected override void Run()
{
Console.WriteLine("Started correctly!");
Assert.IsTrue(true, "Dummy assertion, to test the system");
Console.WriteLine("After assertion");
TestController.Completed();
}
}
}