Skip to content

Commit fe4e8c8

Browse files
Implemented unit testing java file
1 parent b26551a commit fe4e8c8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/ad/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,18 @@ applicationDistribution.into('bin') {
140140
from(ad)
141141
fileMode = 0755
142142
}
143+
144+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
145+
dependencies {
146+
implementation 'io.grpc:grpc-netty-shaded:1.63.0'
147+
implementation 'io.grpc:grpc-protobuf:1.63.0'
148+
implementation 'io.grpc:grpc-stub:1.63.0'
149+
implementation 'org.apache.logging.log4j:log4j-api:2.17.2'
150+
implementation 'org.apache.logging.log4j:log4j-core:2.17.2'
151+
152+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
153+
}
154+
155+
test {
156+
useJUnitPlatform()
157+
}

0 commit comments

Comments
 (0)