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 1198db3 commit 9a0ebd2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nodel-framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,19 @@ jar {
}
}

test {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed'
}
}

dependencies {
implementation 'joda-time:joda-time:2.6'
implementation 'org.slf4j:slf4j-api:1.7.10'

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

// Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
Expand Down

0 comments on commit 9a0ebd2

Please sign in to comment.