Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * 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 : : * Common header for API unit test. 14 : : */ 15 : : 16 : : #ifndef CVC5__TEST__UNIT__TEST_API_H 17 : : #define CVC5__TEST__UNIT__TEST_API_H 18 : : 19 : : #include <cvc5/cvc5.h> 20 : : 21 : : #include "gtest/gtest.h" 22 : : 23 : : namespace cvc5::internal { 24 : : namespace test { 25 : : 26 : : class TestApi : public ::testing::Test 27 : : { 28 : : protected: 29 : 487 : void SetUp() override 30 : : { 31 : 487 : d_solver.reset(new cvc5::Solver(d_tm)); 32 : 487 : d_bool = d_tm.getBooleanSort(); 33 : 487 : d_int = d_tm.getIntegerSort(); 34 : 487 : d_real = d_tm.getRealSort(); 35 : 487 : d_string = d_tm.getStringSort(); 36 : 487 : d_uninterpreted = d_tm.mkUninterpretedSort("u"); 37 : 487 : } 38 : : cvc5::TermManager d_tm; 39 : : std::unique_ptr<cvc5::Solver> d_solver; 40 : : Sort d_bool; 41 : : Sort d_int; 42 : : Sort d_real; 43 : : Sort d_string; 44 : : Sort d_uninterpreted; 45 : : }; 46 : : 47 : : } // namespace test 48 : : } // namespace cvc5::internal 49 : : #endif