namespace Ghost.Test.Core; public class TestRunner { public static void Run() where T : ITest, new() { var test = new T(); test.Run(); } }