mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00:00
Tests: Move AK tests to Tests/AK
This commit is contained in:
parent
fd0dbd1ebf
commit
67322b0702
64 changed files with 1 additions and 2 deletions
14
Tests/AK/TestBadge.cpp
Normal file
14
Tests/AK/TestBadge.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* 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>);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue