forked from Green-Sky/tomato
Green Sky
5c7231b7a3
git-subtree-dir: external/entt/entt git-subtree-split: fef921132cae7588213d0f9bcd2fb9c8ffd8b7fc
14 lines
375 B
C++
14 lines
375 B
C++
#include <type_traits>
|
|
#include <gtest/gtest.h>
|
|
#include <entt/resource/loader.hpp>
|
|
|
|
TEST(ResourceLoader, Functionalities) {
|
|
using loader_type = entt::resource_loader<int>;
|
|
const auto resource = loader_type{}(42);
|
|
|
|
static_assert(std::is_same_v<typename loader_type::result_type, std::shared_ptr<int>>);
|
|
|
|
ASSERT_TRUE(resource);
|
|
ASSERT_EQ(*resource, 42);
|
|
}
|