Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
_
a
b
c
d
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
Typedefs
Files
File List
File Members
All
a
b
c
d
e
f
g
h
l
m
n
o
p
r
s
t
u
v
w
Functions
a
c
d
e
f
h
m
p
r
s
t
u
w
Variables
a
e
f
g
m
n
o
r
s
t
v
Typedefs
Macros
test
src
test_search_param.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2009, Willow Garage, Inc.
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are met:
7
*
8
* * Redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer.
10
* * Redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution.
13
* * Neither the name of the Willow Garage, Inc. nor the names of its
14
* contributors may be used to endorse or promote products derived from
15
* this software without specific prior written permission.
16
*
17
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
* POSSIBILITY OF SUCH DAMAGE.
28
*/
29
30
#include <
ros/ros.h
>
31
#include <gtest/gtest.h>
32
33
static
int
argc_
;
34
static
char
**
argv_
;
35
36
#define PRINT(cmd) printf(#cmd"\n"); cmd; printf("\n");
37
38
TEST
(SearchParamTest, search_test_A)
39
{
40
ros::NodeHandle
nh;
41
ros::param::set
(
"A"
,
"right one!"
);
42
std::string result;
43
44
// Sanity check with getParam
45
EXPECT_TRUE(nh.
getParam
(
"A"
, result));
46
EXPECT_STREQ(
"right one!"
, result.c_str());
47
48
// The Actual search Param test
49
std::string full_name;
50
EXPECT_TRUE(nh.
searchParam
(
"A"
, full_name));
51
EXPECT_STREQ(
"/A"
, full_name.c_str());
52
EXPECT_TRUE(nh.
getParam
(full_name, result));
53
EXPECT_STREQ(
"right one!"
, result.c_str());
54
}
55
56
int
main
(
int
argc,
char
** argv)
57
{
58
testing::InitGoogleTest(&argc, argv);
59
ros::init
(argc, argv,
"search_param_tester"
);
60
argc_
= argc;
61
argv_
= argv;
62
return
RUN_ALL_TESTS();
63
}
ros::init
ROSCPP_DECL void init(const M_string &remappings, const std::string &name, uint32_t options=0)
ros::NodeHandle::getParam
bool getParam(const std::string &key, bool &b) const
ros.h
argv_
static char ** argv_
Definition:
test_search_param.cpp:34
ros::NodeHandle::searchParam
bool searchParam(const std::string &key, std::string &result) const
argc_
static int argc_
Definition:
test_search_param.cpp:33
ros::param::set
ROSCPP_DECL void set(const std::string &key, bool b)
main
int main(int argc, char **argv)
Definition:
test_search_param.cpp:56
TEST
TEST(SearchParamTest, search_test_A)
Definition:
test_search_param.cpp:38
ros::NodeHandle
test_roscpp
Author(s): Morgan Quigley, Josh Faust, Brian Gerkey, Troy Straszheim, Dirk Thomas
, Jacob Perron
autogenerated on Sat Sep 14 2024 02:59:57