Skip to content
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/crypto-square/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"sshine",
"stkent",
"vdemeester",
"Xinri",
"Zaldrick"
],
"files": {
Expand Down
5 changes: 5 additions & 0 deletions exercises/practice/crypto-square/.meta/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ description = "8 character plaintext results in 3 chunks, the last one with a tr

[fbcb0c6d-4c39-4a31-83f6-c473baa6af80]
description = "54 character plaintext results in 7 chunks, the last two with trailing spaces"
include = false

[33fd914e-fa44-445b-8f38-ff8fbc9fe6e6]
description = "54 character plaintext results in 8 chunks, the last two with trailing spaces"
reimplements = "fbcb0c6d-4c39-4a31-83f6-c473baa6af80"
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public void eightCharacterPlaintextResultsInThreeChunksWithATrailingSpace() {

@Disabled("Remove to run test")
@Test
@DisplayName("54 character plaintext results in 7 chunks, the last two with trailing spaces")
public void fiftyFourCharacterPlaintextResultsInSevenChunksWithTrailingSpaces() {
@DisplayName("54 character plaintext results in 8 chunks, the last two with trailing spaces")
public void fiftyFourCharacterPlaintextResultsInEightChunksWithTrailingSpaces() {
CryptoSquare cryptoSquare = new CryptoSquare("If man was meant to stay on the ground, god would have " +
"given us roots.");
String expectedOutput = "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau ";
Expand Down