IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 08de18c0 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

updated comments

parent a838ec20
No related branches found
No related tags found
1 merge request!117Resolve "something wrong with SecondaryView::Delete?"
Pipeline #606 passed
...@@ -163,7 +163,7 @@ TEST_CASE("SecondaryStack", "[stack]") { ...@@ -163,7 +163,7 @@ TEST_CASE("SecondaryStack", "[stack]") {
++p; ++p;
} }
} }
CHECK(stack.GetSize() == 4); // -99, 0, 2, 1 CHECK(stack.GetSize() == 4); // -99, 0, 2, 1 (order changes during deletion)
CHECK(view.GetSize() == 2); // 2, 1 CHECK(view.GetSize() == 2); // 2, 1
} }
...@@ -179,7 +179,7 @@ TEST_CASE("SecondaryStack", "[stack]") { ...@@ -179,7 +179,7 @@ TEST_CASE("SecondaryStack", "[stack]") {
proj.AddSecondary(std::tuple{-1.}); proj.AddSecondary(std::tuple{-1.});
proj.AddSecondary(std::tuple{1.}); proj.AddSecondary(std::tuple{1.});
proj.AddSecondary(std::tuple{2.}); proj.AddSecondary(std::tuple{2.});
// stack should contain 0, 1, 2, [ -2, -1, 1, 2] // stack should contain -99, 0, 2, 1, [-2, -1, 1, 2]
auto p = view.begin(); auto p = view.begin();
while (p != view.end()) { while (p != view.end()) {
...@@ -191,7 +191,7 @@ TEST_CASE("SecondaryStack", "[stack]") { ...@@ -191,7 +191,7 @@ TEST_CASE("SecondaryStack", "[stack]") {
} }
} }
// stack should contain 0, 1, 2, 0, [1, 2] // stack should contain -99, 0, 2, 1, [2, 1]
// view should contain 1, 2 // view should contain 1, 2
CHECK(stack.GetSize() == 6); CHECK(stack.GetSize() == 6);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment