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

#include <cxxtest/TestSuite.h>

#include "expr/node.h"

using namespace CVC4;

class NodeBlack : 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