summaryrefslogtreecommitdiff
path: root/test/unit/expr/kind_black.h
blob: 7aa16eb4e55b7d9e30c99c932b0aa9be57b47353 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*********************                                                        */
/*! \file kind_black.h
 ** \verbatim
 ** Original author: taking
 ** Major contributors: none
 ** Minor contributors (to current version): mdeters
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009-2012  New York University and The University of Iowa
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Black box testing of CVC4::Kind.
 **
 ** Black box testing of CVC4::Kind.
 **/

#include <cxxtest/TestSuite.h>

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

#include "expr/kind.h"

using namespace CVC4;
using namespace CVC4::kind;
using namespace std;

class KindBlack : public CxxTest::TestSuite {
  Kind undefined;
  Kind null;
  Kind last;
  
  //easier to define in setup
  int beyond;
  Kind unknown;
public:
  void setUp() {
    undefined = UNDEFINED_KIND;
    null = NULL_EXPR;
    last = LAST_KIND;
    beyond = ((int) LAST_KIND) + 1;
    unknown = (Kind) beyond;
  }

  
  void testEquality(){

    TS_ASSERT_EQUALS(undefined, UNDEFINED_KIND);
    TS_ASSERT_EQUALS(last, LAST_KIND);
  }
  
  void testOrder(){
    TS_ASSERT_LESS_THAN(int(undefined), int(null));
    TS_ASSERT_LESS_THAN(int(null), int(last));
    TS_ASSERT_LESS_THAN(int(undefined), int(last));
    TS_ASSERT_LESS_THAN(int(last), int(unknown));
  }

  bool stringIsAsExpected(Kind k, const char * s){
    stringstream act;
    stringstream exp;

    act << k;
    exp << s;
    
    string actCreated = act.str();
    string expCreated = exp.str();
    return actCreated == expCreated;
  }

  void testOperatorLtLt() {

    TS_ASSERT(stringIsAsExpected(undefined, "UNDEFINED_KIND"));
    TS_ASSERT(stringIsAsExpected(null, "NULL"));
    TS_ASSERT(stringIsAsExpected(last, "LAST_KIND"));    

  }
  void testOperatorLtLtConcat() {

    stringstream act, exp;
    act << undefined << null << last << unknown;
    exp << "UNDEFINED_KIND" << "NULL" << "LAST_KIND" << "UNKNOWNKIND!"<< beyond;
    
    string actCreated = act.str();
    string expCreated = exp.str();
    
    TS_ASSERT_EQUALS(actCreated, expCreated);
  }

};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback