Login
Remember
Register
Ask a Question
Which Gradle task is used to run all tests in a project?
0
votes
asked
Mar 27, 2024
in
Gradle
by
rajeshsharma
Which Gradle task is used to run all tests in a project?
a) build
b) test
c) check
d) allTests
gradle
task
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 27, 2024
by
rajeshsharma
Answer: b) test
Explanation: The test task is used to run all tests in a Gradle project.
...