Branch data Line data Source code
1 : : /* 2 : : * ----------------- BEGIN LICENSE BLOCK --------------------------------- 3 : : * 4 : : * Copyright (C) 2018-2021 Intel Corporation 5 : : * 6 : : * SPDX-License-Identifier: LGPL-2.1-only 7 : : * 8 : : * ----------------- END LICENSE BLOCK ----------------------------------- 9 : : */ 10 : : 11 : : /* 12 : : * Generated file 13 : : */ 14 : : 15 : : #include <gtest/gtest.h> 16 : : 17 : : #include <limits> 18 : : 19 : : #include "ad/rss/state/LongitudinalResponseValidInputRange.hpp" 20 : : 21 : 2 : TEST(LongitudinalResponseValidInputRangeTests, testValidInputRangeValid) 22 : : { 23 [ + - - + : 1 : ASSERT_TRUE(withinValidInputRange(::ad::rss::state::LongitudinalResponse::None)); - - - - - - - - ] 24 [ + - - + : 1 : ASSERT_TRUE(withinValidInputRange(::ad::rss::state::LongitudinalResponse::BrakeMinCorrect)); - - - - - - - - ] 25 [ + - - + : 1 : ASSERT_TRUE(withinValidInputRange(::ad::rss::state::LongitudinalResponse::BrakeMin)); - - - - - - - - ] 26 : : } 27 : : 28 : 2 : TEST(LongitudinalResponseValidInputRangeTests, testValidInputRangeInvalid) 29 : : { 30 : 1 : int32_t minValue = std::numeric_limits<int32_t>::max(); 31 : : 32 : 1 : minValue = std::min(minValue, static_cast<int32_t>(::ad::rss::state::LongitudinalResponse::None)); 33 : 1 : minValue = std::min(minValue, static_cast<int32_t>(::ad::rss::state::LongitudinalResponse::BrakeMinCorrect)); 34 : 1 : minValue = std::min(minValue, static_cast<int32_t>(::ad::rss::state::LongitudinalResponse::BrakeMin)); 35 : : 36 [ + - - + : 1 : ASSERT_FALSE(withinValidInputRange(static_cast<::ad::rss::state::LongitudinalResponse>(minValue - 1))); - - - - - - - - ] 37 : : }