Added new RHI abstraction layer;

Added new console debug page to UnitTest;
This commit is contained in:
2025-08-25 10:48:59 +09:00
parent eafbfb2fa1
commit 5385141f14
44 changed files with 3473 additions and 357 deletions

View File

@@ -1,4 +1,7 @@
using Microsoft.UI.Xaml;
using Ghost.UnitTest.Test;
using Ghost.UnitTest.TestFramework;
using Ghost.UnitTest.Windows;
using Microsoft.UI.Xaml;
using Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer;
// To learn more about WinUI, the WinUI project structure,
@@ -29,11 +32,12 @@ public partial class UnitTestApp : Application
{
Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.CreateDefaultUI();
_window = new UnitTestAppWindow();
_window = new DebugOutputWindow();
_window.Activate();
UITestMethodAttribute.DispatcherQueue = _window.DispatcherQueue;
Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.Run(Environment.CommandLine);
TestRunner.Run<EntityTest>();
}
}