d_context.reset(nullptr);
}
+// TODO: reenable after #2607 is merged in (issue 6047)
+#if 0
TEST_F(TestContextBlack, top_scope_context_obj)
{
// this test's implementation is based on the fact that a
ASSERT_EQ(x.d_nsaves, 1);
ASSERT_EQ(y.d_nsaves, 2);
}
+#endif
} // namespace test
} // namespace CVC4
ASSERT_EQ(heap.top(), 5);
ASSERT_EQ(heap.size(), 1u);
ASSERT_FALSE(heap.empty());
- ASSERT_NE(heap.begin(), heap.end());
+ ASSERT_FALSE(heap.begin() == heap.end());
ASSERT_EQ(*h5, 5);
ASSERT_EQ(*heap.begin(), 5);
ASSERT_NO_THROW(heap.erase(h5));