summaryrefslogtreecommitdiff
path: root/test/expr/expr_black.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/expr/expr_black.h')
-rw-r--r--test/expr/expr_black.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/expr/expr_black.h b/test/expr/expr_black.h
new file mode 100644
index 000000000..97746d1c4
--- /dev/null
+++ b/test/expr/expr_black.h
@@ -0,0 +1,19 @@
+/* Black box testing of CVC4::Expr. */
+
+#include <cxxtest/TestSuite.h>
+
+#include "cvc4_expr.h"
+
+using namespace CVC4;
+
+class ExprBlack : public CxxTest::TestSuite {
+public:
+
+ void testNull() {
+ Expr::s_null;
+ }
+
+ void testCopyCtor() {
+ Expr e(Expr::s_null);
+ }
+};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback