File: cxx20_features_test.cpp

package info (click to toggle)
megacmd 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 32,592 kB
  • sloc: cpp: 326,437; ansic: 34,524; python: 4,630; java: 3,965; sh: 2,869; objc: 2,459; makefile: 197; xml: 113
file content (42 lines) | stat: -rw-r--r-- 757 bytes parent folder | download | duplicates (2)
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
#include <gtest/gtest.h>

#include <span>
#include <string>
#include <vector>

template<typename T>
concept Addable = requires(T a, T b)
{
    a + b;
};

static_assert(Addable<int>);
static_assert(Addable<std::string>);

// Test with a type that doesn't have operator+
struct NonAddable
{
    int value;
};

static_assert(!Addable<NonAddable>);

TEST(Cxx20Features, ConceptsWorks)
{
    // Test that Addable concept works with numeric types
    auto add = [](Addable auto a, Addable auto b)
    {
        return a + b;
    };

    EXPECT_EQ(add(5, 3), 8);
    EXPECT_EQ(add(2.5, 1.5), 4.0);
    EXPECT_EQ(add(10u, 20u), 30u);
}

TEST(Cxx20Features, SpanWorks)
{
    std::vector<int> v{1, 2, 3};
    std::span<int> s{v};
    EXPECT_EQ(s.size(), v.size());
}