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
|
/********************* */
/*! \file assert_white.h
** \verbatim
** Top contributors (to current version):
** Mathias Preiner, Morgan Deters, Andres Noetzli
** 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 White box testing of CVC4::Configuration.
**
** White box testing of CVC4::Configuration.
**/
#include <cxxtest/TestSuite.h>
#include <string>
#include <cstring>
#include "base/check.h"
#include "test_utils.h"
using namespace CVC4;
using namespace std;
class AssertWhite : public CxxTest::TestSuite {
public:
void testAssert()
{
#ifdef CVC4_ASSERTIONS
TS_UTILS_EXPECT_ABORT(Assert(false));
TS_ASSERT_THROWS(AssertArgument(false, "x"), AssertArgumentException&);
#else /* CVC4_ASSERTIONS */
TS_ASSERT_THROWS_NOTHING(Assert(false));
TS_ASSERT_THROWS_NOTHING(AssertArgument(false, "x"));
#endif /* CVC4_ASSERTIONS */
TS_ASSERT_THROWS_NOTHING(Assert(true));
TS_UTILS_EXPECT_ABORT(AlwaysAssert(false));
TS_UTILS_EXPECT_ABORT(Unreachable());
TS_UTILS_EXPECT_ABORT(Unhandled());
TS_UTILS_EXPECT_ABORT(Unimplemented());
TS_ASSERT_THROWS(IllegalArgument("x"), IllegalArgumentException&);
TS_ASSERT_THROWS(CheckArgument(false, "x"), IllegalArgumentException&);
TS_ASSERT_THROWS(AlwaysAssertArgument(false, "x"), AssertArgumentException&);
TS_ASSERT_THROWS_NOTHING(AssertArgument(true, "x"));
TS_ASSERT_THROWS_NOTHING(AssertArgument(true, "x"));
}
void testUnreachable() {
TS_UTILS_EXPECT_ABORT(Unreachable());
TS_UTILS_EXPECT_ABORT(Unreachable() << "hello");
TS_UTILS_EXPECT_ABORT(Unreachable() << "hello "
<< "world");
int x = 5;
TS_UTILS_EXPECT_ABORT(Unhandled());
TS_UTILS_EXPECT_ABORT(Unhandled() << x);
TS_UTILS_EXPECT_ABORT(Unhandled() << "foo");
TS_UTILS_EXPECT_ABORT(Unhandled() << "foo "
<< "bar"
<< " baz");
}
};
|