summaryrefslogtreecommitdiff
path: root/test/unit/test_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_api.h')
-rw-r--r--test/unit/test_api.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/unit/test_api.h b/test/unit/test_api.h
new file mode 100644
index 000000000..72d0658a7
--- /dev/null
+++ b/test/unit/test_api.h
@@ -0,0 +1,27 @@
+/********************* */
+/*! \file datatype_api_black.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Aina Niemetz
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
+ ** in the top-level source directory and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Common header for API unit test.
+ **/
+
+#ifndef CVC4__TEST__UNIT__TEST_API_H
+#define CVC4__TEST__UNIT__TEST_API_H
+
+#include "api/cvc4cpp.h"
+#include "gtest/gtest.h"
+
+class TestApi : public ::testing::Test
+{
+ protected:
+ CVC4::api::Solver d_solver;
+};
+
+#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback