Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Mathias Preiner, Aina Niemetz 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS 8 : : * in the top-level source directory and their institutional affiliations. 9 : : * All rights reserved. See the file COPYING in the top-level source 10 : : * directory for licensing information. 11 : : * **************************************************************************** 12 : : * 13 : : * Black box testing of the Kind enum of the C++ API. 14 : : */ 15 : : 16 : : #include <cvc5/cvc5.h> 17 : : 18 : : #include <algorithm> 19 : : 20 : : #include "base/output.h" 21 : : #include "gtest/gtest.h" 22 : : 23 : : namespace cvc5::internal { 24 : : 25 : : namespace test { 26 : : 27 : : class TestApiKind : public ::testing::Test 28 : : { 29 : : }; 30 : : 31 : 2 : TEST_F(TestApiKind, kindToString) 32 : : { 33 : 291 : for (int32_t k = static_cast<int32_t>(Kind::INTERNAL_KIND); 34 [ + + ]: 291 : k < static_cast<int32_t>(Kind::LAST_KIND); 35 : : ++k) 36 : : { 37 : 290 : auto kindstr = std::to_string(static_cast<Kind>(k)); 38 [ + + ]: 290 : if (k == static_cast<int32_t>(Kind::INTERNAL_KIND)) 39 : : { 40 [ - + ]: 1 : ASSERT_EQ(kindstr, "INTERNAL_KIND"); 41 : : } 42 [ + + ]: 289 : else if (k == static_cast<int32_t>(Kind::UNDEFINED_KIND)) 43 : : { 44 [ - + ]: 1 : ASSERT_EQ(kindstr, "UNDEFINED_KIND"); 45 : : } 46 : : else 47 : : { 48 : : // If this assertion fails, s_kinds in cvc5.cpp is missing kind k. 49 [ - + ]: 288 : ASSERT_NE(kindstr, "UNDEFINED_KIND"); 50 [ - + ]: 288 : ASSERT_NE(kindstr, "INTERNAL_KIND"); 51 : : } 52 : : } 53 : : } 54 : : 55 : : } // namespace test 56 : : } // namespace cvc5::internal