summaryrefslogtreecommitdiff
path: root/test/unit/expr/expr_white.h
blob: 6b48d66e6dea9ebb4effce7a2c0851b308cb14ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* White box testing of CVC4::Node. */

#include <cxxtest/TestSuite.h>

#include "expr/expr.h"

using namespace CVC4;

class ExprWhite : public CxxTest::TestSuite {
public:

  void testNull() {
    Node::s_null;
  }

  void testCopyCtor() {
    Node e(Node::s_null);
  }
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback