2021-01-14 15:12:44 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-14 15:12:44 -03:00
|
|
|
*/
|
|
|
|
|
|
2021-04-25 02:53:23 -03:00
|
|
|
#include <LibTest/TestCase.h>
|
2021-01-14 15:12:44 -03:00
|
|
|
|
|
|
|
|
#include <AK/Badge.h>
|
|
|
|
|
|
|
|
|
|
TEST_CASE(should_provide_underlying_type)
|
|
|
|
|
{
|
2021-04-10 10:59:06 -03:00
|
|
|
static_assert(IsSame<int, Badge<int>::Type>);
|
2021-01-14 15:12:44 -03:00
|
|
|
}
|