summaryrefslogtreecommitdiff
path: root/test/unit/expr/kind_map_black.cpp
blob: 1d99d5780bbec87d91092676578309a213fe63d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*********************                                                        */
/*! \file kind_map_black.cpp
 ** \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 Black box testing of CVC4::KindMap
 **
 ** Black box testing of CVC4::KindMap.
 **/

#include <iostream>
#include <sstream>
#include <string>

#include "expr/kind_map.h"
#include "test.h"

namespace CVC4 {

using namespace kind;

namespace test {

class TestExprBlackKindMap : public TestInternal
{
};

TEST_F(TestExprBlackKindMap, simple)
{
  KindMap map;
  ASSERT_FALSE(map.test(AND));
  map.set(AND);
  ASSERT_TRUE(map.test(AND));
  map.reset(AND);
  ASSERT_FALSE(map.test(AND));
#ifdef CVC4_ASSERTIONS
  ASSERT_THROW(map.set(LAST_KIND), AssertArgumentException);
#endif
}

}  // namespace test
}  // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback