test: 添加 D3D12 测试框架基础设施

- 创建 engine/src/RHI/D3D12/test/ 目录
- 添加 CMakeLists.txt 构建配置
- 添加基础测试夹具 D3D12TestFixture.h
- 添加各组件测试文件框架
- 更新 tests/CMakeLists.txt 集成新测试
This commit is contained in:
2026-03-17 02:51:34 +08:00
parent 05c4dfb5eb
commit d1c7c23527
15 changed files with 274 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#include "fixtures/D3D12TestFixture.h"
TEST(D3D12Shader, Placeholder) {
ASSERT_TRUE(true);
}