Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
99ba8ee
Save test archive results to results.txt file
jagdish-15 Oct 16, 2025
a741d9d
Change test results file format from JSON to TXT
jagdish-15 Oct 16, 2025
a605da2
Use tee to save test results to file
jagdish-15 Oct 16, 2025
2edaf59
Remove echo statement for results path
jagdish-15 Oct 16, 2025
ce569bf
Merge branch 'exercism:main' into main
jagdish-15 Nov 15, 2025
c248f79
Add Checkstyle plugin to build.gradle
jagdish-15 Nov 15, 2025
12fe5a2
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
03ecfa3
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
82f8fe5
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
88404c0
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
bf90559
Add test for encoding 'yes' in AffineCipher
jagdish-15 Nov 15, 2025
a390166
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
ce492d5
Format AffineCipherTest.java for readability
jagdish-15 Nov 15, 2025
d089106
Remove unnecessary empty line in AffineCipherTest
jagdish-15 Nov 15, 2025
c4ed448
Update test to encode string 'yes' with parameters
jagdish-15 Nov 15, 2025
5a57910
Update test for affineCipher.encode method
jagdish-15 Nov 15, 2025
0a16c94
Update testEncodeYes to include additional parameter
jagdish-15 Nov 15, 2025
aaedaeb
Update test for affineCipher.encode method
jagdish-15 Nov 15, 2025
7edb414
Update testEncodeYes to include additional parameter
jagdish-15 Nov 15, 2025
8dbb85f
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
83e8edf
Update testEncodeYes to include additional argument
jagdish-15 Nov 15, 2025
3884a08
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
449b4ff
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
b2392c7
Update AffineCipherTest.java
jagdish-15 Nov 15, 2025
1af38de
Update testEncodeYes to include additional parameter
jagdish-15 Nov 15, 2025
506b09f
Update BlackjackTest.java
jagdish-15 Nov 16, 2025
644c36a
Fix test case for verseOne in HouseTest
jagdish-15 Nov 16, 2025
b2a19b5
Delete exercises/concept/blackjack/src/test/java/BlackjackTest.java
jagdish-15 Nov 16, 2025
e826eff
Update test for AffineCipher to use new encode method
jagdish-15 Nov 16, 2025
073d0f7
Change knightIsAwake to false in test case
jagdish-15 Nov 16, 2025
4b08f2f
Update verseTwo test to include additional parameter
jagdish-15 Nov 16, 2025
ed84805
Clean up build.gradle by removing blank line
jagdish-15 Nov 16, 2025
6271e3c
Add checkstyle plugin to subprojects
jagdish-15 Nov 16, 2025
5bf4628
Update verseTwo test to use single argument
jagdish-15 Nov 16, 2025
15a606a
Add disabled test for encoding with spaces
jagdish-15 Nov 16, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class AnnalynsInfiltrationTest {
@Tag("task:1")
@DisplayName("The canFastAttack method returns false when knight is awake")
public void cannotExecuteFastAttackIfKnightIsAwake() {
boolean knightIsAwake = true;
boolean knightIsAwake = false;
assertThat(AnnalynsInfiltration.canFastAttack(knightIsAwake)).isFalse();
}

Expand Down
Loading
Loading