mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
8 lines
217 B
C++
8 lines
217 B
C++
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include "../doomtype.h"
|
|
|
|
TEST_CASE("C++ bool is convertible to doomtype.h boolean") {
|
|
REQUIRE(static_cast<boolean>(true) == 1);
|
|
REQUIRE(static_cast<boolean>(false) == 0);
|
|
}
|