1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 08:37:24 +00:00
serenity/Tests/AK/TestBadge.cpp
2021-05-06 17:54:28 +02:00

15 lines
252 B
C++

/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibTest/TestCase.h>
#include <AK/Badge.h>
TEST_CASE(should_provide_underlying_type)
{
static_assert(IsSame<int, Badge<int>::Type>);
}