summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-12-04 01:37:11 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-12-04 01:37:11 +0100
commit84ecdcbca9e55b1f57fbb832e12ff4fdbb86e7c9 (patch)
tree01f2dd97dec03218621ec766b0a95c149cd54d83 /tests
parent032409d34546a5e257a35fbfedb3e5aecaf08ebb (diff)
core: Fixed broken tree impl.
Diffstat (limited to 'tests')
-rw-r--r--tests/tree.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/tree.cpp b/tests/tree.cpp
index a33f0b1..2515ee9 100644
--- a/tests/tree.cpp
+++ b/tests/tree.cpp
@@ -2,25 +2,6 @@
#include <forstio/core/tree.h>
namespace {
-/*
-SAW_TEST("Tree insert"){
- using namespace saw;
-
- branch<int> troi;
- {
- // Replace with value
- auto eor = troi.replace_tree(5);
-
- SAW_EXPECT(eor.is_value(), "Didn't manage to replace with value");
- }
- {
- // Replace with tree again
- auto eor = troi.replace_value(tree<int>{});
-
- SAW_EXPECT(eor.is_value(), "Not a value");
- }
-}
-
SAW_TEST("Tree add child"){
using namespace saw;
@@ -40,5 +21,4 @@ SAW_TEST("Tree add child"){
SAW_EXPECT(eov2.is_value(), "Didn't manage to add to inner tree");
}
}
-*/
}