summaryrefslogtreecommitdiff
path: root/test/unit/util/check_white.cpp
blob: 4909e3a58cfd54a3c54ff8bd7fec480858a39551 (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
/*********************                                                        */
/*! \file check_white.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Aina Niemetz, Tim King, Mathias Preiner
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2021 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 White box testing of check utilities.
 **
 ** White box testing of check utilities.
 **/

#include <cstring>
#include <string>

#include "base/check.h"
#include "test.h"

namespace cvc5 {
namespace test {

class TestUtilWhiteCheck : public TestInternal
{
 protected:
  static constexpr uint32_t K_ONE = 1;

  // This test just checks that this statement compiles.
  std::string terminalCvc4Fatal() const
  {
    CVC4_FATAL() << "This is a test that confirms that CVC4_FATAL can be a "
                    "terminal statement in a function that has a non-void "
                    "return type.";
  }
};

TEST_F(TestUtilWhiteCheck, check)
{
  AlwaysAssert(K_ONE >= 0) << K_ONE << " must be positive";
}

TEST_F(TestUtilWhiteCheck, dcheck)
{
  Assert(K_ONE == 1) << "always passes";
#ifndef CVC4_ASSERTIONS
  Assert(false) << "Will not be compiled in when CVC4_ASSERTIONS off.";
#endif
}

TEST_F(TestUtilWhiteCheck, pointer_type_can_be_condition)
{
  const uint32_t* one_pointer = &K_ONE;
  Assert(one_pointer);
  AlwaysAssert(one_pointer);
}

TEST_F(TestUtilWhiteCheck, expect_abort)
{
  ASSERT_DEATH(Assert(false), "false");
  ASSERT_DEATH(AlwaysAssert(false), "false");
}
}  // namespace test
}  // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback