Files
Renderive/Kernel/tests/renderive/base/Concepts_Test.cpp
T
2026-08-04 16:24:41 +08:00

12 lines
380 B
C++

#include <gtest/gtest.h>
#include "renderive/base/Atomic_Mutex.hpp"
#include "renderive/base/Concepts.hpp"
struct Base_Plain_Type {};
static_assert(Class_Type<Base_Plain_Type>);
static_assert(Derivable_Type<Base_Plain_Type>);
static_assert(Mutex_Type<Atomic_Spin_Mutex>);
static_assert(Mutex_Type<Atomic_Wait_Mutex>);
TEST(base_concepts_test, concepts_compile) {
SUCCEED();
}