Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating tests of Zipper exercise to sync with the Problem-Specification repo #2873

Merged
merged 3 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exercises/practice/zipper/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
],
"contributors": [
"FridaTveit",
"jagdish-15",
"jmrunkle",
"lemoncurry",
"msomji",
Expand Down
16 changes: 13 additions & 3 deletions exercises/practice/zipper/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[771c652e-0754-4ef0-945c-0675d12ef1f5]
description = "data is retained"
Expand All @@ -20,6 +27,9 @@ description = "traversing up from top"
[b8505f6a-aed4-4c2e-824f-a0ed8570d74b]
description = "left, right, and up"

[b9aa8d54-07b7-4bfd-ab6b-7ff7f35930b6]
description = "test ability to descend multiple levels and return"

[47df1a27-b709-496e-b381-63a03b82ea5f]
description = "set_value"

Expand Down
7 changes: 7 additions & 0 deletions exercises/practice/zipper/src/test/java/ZipperTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ public void testLeftRightAndUp() {
assertThat(zipper.left.up.right.up.left.right.getValue()).isEqualTo(3);
}

@Disabled("Remove to run test")
@Test
public void testAbilityToReturnAfterMultipleLevelDescend() {
zipper = binaryTree.getRoot();
assertThat(zipper.left.right.up.up.getValue()).isEqualTo(1);
}

@Disabled("Remove to run test")
@Test
public void testSetValue() {
Expand Down