assertion_test.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, 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 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 #define ROS_ASSERT_ENABLED
31 
32 #include "ros/assert.h"
33 
34 #include <gtest/gtest.h>
35 
36 void doAssert()
37 {
38  ROS_ASSERT(false);
39 }
40 
41 void doBreak()
42 {
43  ROS_BREAK();
44 }
45 
47 {
48  ROS_ASSERT_MSG(false, "Testing %d %d %d", 1, 2, 3);
49 }
50 
51 TEST(RosAssert, assert)
52 {
53  ROS_ASSERT(true);
54 
55  EXPECT_DEATH(doAssert(), "ASSERTION FAILED");
56 }
57 
58 TEST(RosAssert, breakpoint)
59 {
60  EXPECT_DEATH(doBreak(), "BREAKPOINT HIT");
61 }
62 
63 TEST(RosAssert, assertWithMessage)
64 {
65  ROS_ASSERT_MSG(true, "Testing %d %d %d", 1, 2, 3);
66  EXPECT_DEATH(doAssertMessage(), "Testing 1 2 3");
67 }
68 
69 int main(int argc, char **argv)
70 {
71  testing::InitGoogleTest(&argc, argv);
73  testing::FLAGS_gtest_death_test_style = "threadsafe";
74 
75  return RUN_ALL_TESTS();
76 }
ROS_BREAK
#define ROS_BREAK()
Aborts program execution.
Definition: assert.h:114
doBreak
void doBreak()
Definition: assertion_test.cpp:41
assert.h
doAssertMessage
void doAssertMessage()
Definition: assertion_test.cpp:46
doAssert
void doAssert()
Definition: assertion_test.cpp:36
ROS_ASSERT_MSG
#define ROS_ASSERT_MSG(cond,...)
Asserts that the provided condition evaluates to true.
Definition: assert.h:128
TEST
TEST(RosAssert, assert)
Definition: assertion_test.cpp:51
ros::Time::init
static void init()
main
int main(int argc, char **argv)
Definition: assertion_test.cpp:69
ROS_ASSERT
#define ROS_ASSERT(cond)
Asserts that the provided condition evaluates to true.
Definition: assert.h:120


rosconsole
Author(s): Josh Faust
autogenerated on Wed Mar 2 2022 00:53:52