🗑️ 移除test_glaz

 新增测试`test_lsp_any`
This commit is contained in:
csh
2025-11-02 15:47:48 +08:00
parent a81d9de71d
commit 64ec88f0c3
14 changed files with 2592 additions and 1156 deletions
@@ -0,0 +1,39 @@
#pragma once
#include "test_framework.hpp"
namespace lsp::test
{
// Common 类型特征测试类
class CommonTests
{
public:
static void registerTests(TestRunner& runner);
private:
// ==================== is_lsp_basic_type 测试 ====================
static TestResult testIsLSPBasicInteger();
static TestResult testIsLSPBasicUInteger();
static TestResult testIsLSPBasicBoolean();
static TestResult testIsLSPBasicString();
static TestResult testIsLSPBasicDecimal();
static TestResult testIsLSPBasicNullptr();
static TestResult testIsLSPBasicNegativeCases();
// ==================== is_lsp_container_type 测试 ====================
static TestResult testIsLSPContainerObject();
static TestResult testIsLSPContainerArray();
static TestResult testIsLSPContainerAny();
static TestResult testIsLSPContainerNegativeCases();
// ==================== is_user_struct 测试 ====================
static TestResult testIsUserStructPositive();
static TestResult testIsUserStructExcludeArithmetic();
static TestResult testIsUserStructExcludeString();
static TestResult testIsUserStructExcludeLSPTypes();
static TestResult testIsUserStructExcludeVector();
static TestResult testIsUserStructExcludeMap();
static TestResult testIsUserStructExcludeOptional();
static TestResult testIsUserStructExcludeVariant();
static TestResult testIsUserStructExcludePointers();
};
}