MRPT
1.9.9
visit_each_unittest.cpp
Go to the documentation of this file.
1
/* +------------------------------------------------------------------------+
2
| Mobile Robot Programming Toolkit (MRPT) |
3
| https://www.mrpt.org/ |
4
| |
5
| Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6
| See: https://www.mrpt.org/Authors - All rights reserved. |
7
| Released under BSD License. See: https://www.mrpt.org/License |
8
+------------------------------------------------------------------------+ */
9
10
#include <
mrpt/containers/visit_each.h
>
11
#include <
mrpt/core/common.h
>
12
13
#include <gtest/gtest.h>
14
15
int
counter
= 0;
16
struct
Bar1
17
{
18
void
foo
() { ++
counter
; }
19
};
20
struct
Bar2
21
{
22
void
foo
() { ++
counter
; }
23
};
24
25
TEST
(containers_visit_each, call_all)
26
{
27
Bar1
a, b;
28
Bar2
c, d;
29
mrpt::visit_each
([&](
auto
obj) ->
void
{ obj.foo(); }, a, b, c, d);
30
EXPECT_EQ
(
counter
, 4);
31
}
TEST
TEST(containers_visit_each, call_all)
Definition:
visit_each_unittest.cpp:25
counter
int counter
Definition:
visit_each_unittest.cpp:15
Bar2
Definition:
visit_each_unittest.cpp:20
Bar2::foo
void foo()
Definition:
visit_each_unittest.cpp:22
mrpt::visit_each
void visit_each(const Visitor &vis, T &&... t)
Definition:
visit_each.h:21
Bar1
Definition:
visit_each_unittest.cpp:16
visit_each.h
EXPECT_EQ
EXPECT_EQ(out.image_pair_was_used.size(), NUM_IMGS)
common.h
Bar1::foo
void foo()
Definition:
visit_each_unittest.cpp:18
Page generated by
Doxygen 1.8.14
for MRPT 1.9.9 Git: c7a3bec24 Sun Mar 29 18:33:13 2020 +0200 at dom mar 29 18:50:38 CEST 2020