cvc5-cvc5-1.2.0.test.unit.util.assert_white.cpp Maven / Gradle / Ivy
The newest version!
/******************************************************************************
* Top contributors (to current version):
* Aina Niemetz
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2024 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.
* ****************************************************************************
*
* White box testing of cvc5::Configuration.
*/
#include
#include
#include "base/check.h"
#include "test.h"
namespace cvc5::internal {
namespace test {
class TestUtilWhite : public TestInternal
{
};
TEST_F(TestUtilWhite, Assert)
{
#ifdef CVC5_ASSERTIONS
ASSERT_DEATH(Assert(false), "false");
#else
ASSERT_NO_THROW(Assert(false));
#endif
ASSERT_DEATH(AlwaysAssert(false), "false");
ASSERT_NO_FATAL_FAILURE(Assert(true));
ASSERT_NO_FATAL_FAILURE(AlwaysAssert(true));
}
TEST_F(TestUtilWhite, AssertArgument)
{
#ifdef CVC5_ASSERTIONS
ASSERT_THROW(AssertArgument(false, "x"), AssertArgumentException);
#else
ASSERT_NO_THROW(AssertArgument(false, "x"));
#endif
ASSERT_THROW(AlwaysAssertArgument(false, "x"), AssertArgumentException);
ASSERT_NO_THROW(AssertArgument(true, "x"));
ASSERT_NO_THROW(AssertArgument(true, "x"));
}
TEST_F(TestUtilWhite, Unreachable)
{
ASSERT_DEATH(Unreachable(), "Unreachable code reached ");
ASSERT_DEATH(Unreachable() << "hello", "Unreachable code reached hello");
ASSERT_DEATH(Unreachable() << "hello "
<< "world",
"Unreachable code reached hello world");
}
TEST_F(TestUtilWhite, Unhandled)
{
ASSERT_DEATH(Unhandled(), "Unhandled case encountered ");
ASSERT_DEATH(Unhandled() << 5, "Unhandled case encountered 5");
ASSERT_DEATH(Unhandled() << "foo", "Unhandled case encountered foo");
ASSERT_DEATH(Unhandled() << "foo "
<< "bar"
<< " baz",
"Unhandled case encountered foo bar baz");
}
TEST_F(TestUtilWhite, Unimplemented)
{
ASSERT_DEATH(Unimplemented(), "Unimplemented code encountered ");
}
TEST_F(TestUtilWhite, IllegalArgument)
{
ASSERT_THROW(IllegalArgument("x"), IllegalArgumentException);
}
TEST_F(TestUtilWhite, CheckArgument)
{
ASSERT_THROW(CheckArgument(false, "x"), IllegalArgumentException);
}
} // namespace test
} // namespace cvc5::internal