mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using System;
|
|
using System.Collections;
|
|
|
|
using Cosmos.TestRunner;
|
|
using Sys = Cosmos.System;
|
|
|
|
using Cosmos.Compiler.Tests.Bcl.CSharp;
|
|
|
|
namespace Cosmos.Compiler.Tests.Bcl.System
|
|
{
|
|
public class Kernel : Sys.Kernel
|
|
{
|
|
protected override void BeforeRun()
|
|
{
|
|
Console.WriteLine("Cosmos booted successfully. Starting BCL System tests now please wait...");
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
try
|
|
{
|
|
mDebugger.Send("Run");
|
|
|
|
|
|
// System
|
|
//ArrayTests.Execute();
|
|
StringTest.Execute();
|
|
//ObjectTests.Execute();
|
|
//ByteTest.Execute();
|
|
//SByteTest.Execute();
|
|
//Int16Test.Execute();
|
|
//UInt16Test.Execute();
|
|
//Int32Test.Execute();
|
|
//UInt32Test.Execute();
|
|
//Int64Test.Execute();
|
|
//UInt64Test.Execute();
|
|
//CharTest.Execute();
|
|
//BooleanTest.Execute();
|
|
//SingleTest.Execute();
|
|
//DoubleTest.Execute();
|
|
//MathTest.Execute();
|
|
//ConvertTests.Execute();
|
|
//DateTimeTests.Execute();
|
|
//TimeSpanTests.Execute();
|
|
|
|
|
|
TestController.Completed();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
mDebugger.Send("Exception occurred: " + e.Message);
|
|
mDebugger.Send(e.Message);
|
|
Console.WriteLine("Exception occurred");
|
|
Console.WriteLine(e.Message);
|
|
TestController.Failed();
|
|
}
|
|
}
|
|
}
|
|
}
|