GCC Code Coverage Report
Directory: . Exec Total Coverage
File: test/unit/test_api.h Lines: 1 1 100.0 %
Date: 2021-05-22 Branches: 1 2 50.0 %

Line Exec Source
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-2021 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 "api/cpp/cvc5.h"
20
#include "gtest/gtest.h"
21
22
namespace cvc5 {
23
namespace test {
24
25
1056
class TestApi : public ::testing::Test
26
{
27
 protected:
28
  cvc5::api::Solver d_solver;
29
};
30
31
}  // namespace test
32
}  // namespace cvc5
33
#endif