mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
19 lines
539 B
C++
19 lines
539 B
C++
#include <catch2/catch.hpp>
|
|
|
|
#include <type_traits>
|
|
|
|
#include "Image/ImageFormat.h"
|
|
|
|
namespace image::image_format
|
|
{
|
|
TEST_CASE("ImageFormat: EnsureAllFormatsArrayIndicesAreIds", "[image]")
|
|
{
|
|
REQUIRE(static_cast<unsigned int>(ImageFormatId::MAX) == std::extent<decltype(ImageFormat::ALL_FORMATS)>::value);
|
|
|
|
for(unsigned i = 0; i < std::extent<decltype(ImageFormat::ALL_FORMATS)>::value; i++)
|
|
{
|
|
REQUIRE(ImageFormat::ALL_FORMATS[i] != nullptr);
|
|
REQUIRE(i == static_cast<unsigned>(ImageFormat::ALL_FORMATS[i]->GetId()));
|
|
}
|
|
}
|
|
} |