Skip to content

Commit

Permalink
Add JUnit as a testing framework
Browse files Browse the repository at this point in the history
- Configure Gradle build to include JUnit dependencies
  • Loading branch information
scroix committed Apr 20, 2024
1 parent de67ed4 commit 14b7033
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nodel-framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,11 @@ dependencies {

// SSH features
implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
}
}

// Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

0 comments on commit 14b7033

Please sign in to comment.