summaryrefslogtreecommitdiff
path: root/test/unit/expr/node_black.h
blob: c95900383a58938b0ae5364b69a311eeaa559a60 (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::null();
  }

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