1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*!********************************************************************
Audacity: A Digital Audio Editor
TypeEnumerator.cpp
@brief compilation-only tests as examples of use of TypeEnumerator
Paul Licameli
**********************************************************************/
#include <catch2/catch.hpp>
#include "TypeEnumerator.h"
using namespace TypeEnumerator;
using namespace TypeList;
BEGIN_TYPE_ENUMERATION(Tag1)
BEGIN_TYPE_ENUMERATION(Tag2)
ENUMERATE_TYPE(Tag1, void)
ENUMERATE_TYPE(Tag2, char)
TEST_CASE("Using different tags")
{
struct Here1 : Tag1{};
struct Here2 : Tag2{};
static_assert(std::is_same_v<List<void>,
CollectTypes<Tag1, Here1>::type>);
static_assert(std::is_same_v<List<char>,
CollectTypes<Tag2, Here2>::type>);
}
ENUMERATE_TYPE(Tag1, const volatile int&)
ENUMERATE_TYPE(Tag2, long)
TEST_CASE("Dependency on location")
{
struct Here1 : Tag1{};
struct Here2 : Tag2{};
static_assert(std::is_same_v<List<void, const volatile int&>,
CollectTypes<Tag1, Here1>::type>);
static_assert(std::is_same_v<List<char, long>,
CollectTypes<Tag2, Here2>::type>);
}
ENUMERATE_TYPE(Tag1, const volatile int&)
ENUMERATE_TYPE(Tag2, long)
TEST_CASE("Distinct types, only")
{
struct Here1 : Tag1{};
struct Here2 : Tag2{};
static_assert(std::is_same_v<List<void, const volatile int&>,
CollectTypes<Tag1, Here1>::type>);
static_assert(std::is_same_v<List<char, long>,
CollectTypes<Tag2, Here2>::type>);
}
|