summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2019-02-12 20:16:24 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2019-02-12 20:16:24 -0800
commit6eb492f636d2c950a6064389dfba297baff8e08e (patch)
tree7c5aabc01a6403c334e3f9f837c166e27d92ae50 /test/unit
parent6b07347b4964ff79dc6a17f22ab4be29aa489196 (diff)
New C++ API: Remove redundant mkTerm function. (#2836)
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/api/solver_black.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/unit/api/solver_black.h b/test/unit/api/solver_black.h
index 169a9948d..0a3eb46c3 100644
--- a/test/unit/api/solver_black.h
+++ b/test/unit/api/solver_black.h
@@ -550,11 +550,6 @@ void SolverBlack::testMkTerm()
TS_ASSERT_THROWS_NOTHING(d_solver->mkTerm(REGEXP_SIGMA));
TS_ASSERT_THROWS(d_solver->mkTerm(CONST_BITVECTOR), CVC4ApiException&);
- // mkTerm(Kind kind, Sort sort) const
- TS_ASSERT_THROWS_NOTHING(
- d_solver->mkTerm(SEP_NIL, d_solver->getBooleanSort()));
- TS_ASSERT_THROWS_NOTHING(d_solver->mkTerm(SEP_NIL, Sort()));
-
// mkTerm(Kind kind, Term child) const
TS_ASSERT_THROWS_NOTHING(d_solver->mkTerm(NOT, d_solver->mkTrue()));
TS_ASSERT_THROWS(d_solver->mkTerm(NOT, Term()), CVC4ApiException&);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback