Files
cvc5/test/unit/context/cdhashmap_white.cpp
2025-01-23 17:54:20 +00:00

47 lines
1.2 KiB
C++

/******************************************************************************
* Top contributors (to current version):
* Aina Niemetz
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2025 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::context::CDMap<>.
*/
#include "base/check.h"
#include "context/cdhashmap.h"
#include "test_context.h"
namespace cvc5::internal {
using namespace context;
namespace test {
class TestContextWhiteCDHashMap : public TestContext
{
};
TEST_F(TestContextWhiteCDHashMap, unreachable_save_and_restore)
{
CDHashMap<int, int> map(d_context.get());
ASSERT_NO_THROW(map.makeCurrent());
ASSERT_DEATH(map.update(), "Unreachable code reached");
ASSERT_DEATH(map.save(d_context->getCMM()), "Unreachable code reached");
ASSERT_DEATH(map.restore(&map), "Unreachable code reached");
d_context->push();
ASSERT_DEATH(map.makeCurrent(), "Unreachable code reached");
}
} // namespace test
} // namespace cvc5::internal