summaryrefslogtreecommitdiff
path: root/test/unit/context/cdo_black.h
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-12-04 12:07:51 -0800
committerGitHub <noreply@github.com>2020-12-04 12:07:51 -0800
commitde6e4e0a2fc8e80574ccd2f271bd77c608791a00 (patch)
tree34c35369b8639bfbf797a429cffffabb45f04c96 /test/unit/context/cdo_black.h
parent1636bd54a893ea9d1a559e0e6c45f184a8493209 (diff)
google test: context: Migrate cdo_black. (#5586)
Diffstat (limited to 'test/unit/context/cdo_black.h')
-rw-r--r--test/unit/context/cdo_black.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/test/unit/context/cdo_black.h b/test/unit/context/cdo_black.h
deleted file mode 100644
index 6c4540ae4..000000000
--- a/test/unit/context/cdo_black.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/********************* */
-/*! \file cdo_black.h
- ** \verbatim
- ** Top contributors (to current version):
- ** Dejan Jovanovic, 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 Black box testing of CVC4::context::CDO<>.
- **
- ** Black box testing of CVC4::context::CDO<>.
- **/
-
-#include <cxxtest/TestSuite.h>
-
-#include <iostream>
-#include <vector>
-
-#include "base/check.h"
-#include "context/cdlist.h"
-#include "context/cdo.h"
-#include "context/context.h"
-
-using namespace std;
-using namespace CVC4;
-using namespace CVC4::context;
-
-class CDOBlack : public CxxTest::TestSuite {
-private:
-
- Context* d_context;
-
- public:
- void setUp() override { d_context = new Context; }
-
- void tearDown() override { delete d_context; }
-
- void testIntCDO()
- {
- // Test that push/pop maintains the original value
- CDO<int> a1(d_context);
- a1 = 5;
- TS_ASSERT(d_context->getLevel() == 0);
- d_context->push();
- a1 = 10;
- TS_ASSERT(d_context->getLevel() == 1);
- TS_ASSERT(a1 == 10);
- d_context->pop();
- TS_ASSERT(d_context->getLevel() == 0);
- TS_ASSERT(a1 == 5);
- }
-};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback