JUnit: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 8: | Line 8: | ||
=Dependencies= | =Dependencies= | ||
<syntaxhighlight lang='java'> | |||
dependencies { | |||
testImplementation('junit:junit:4.12') | |||
} | |||
</syntaxhighlight> | |||
=Concepts= | =Concepts= |
Revision as of 00:50, 23 November 2018
External
Internal
Overview
Dependencies
dependencies {
testImplementation('junit:junit:4.12')
}
Concepts
Test Runner
A JUnit plugin that provides custom testing behavior. Specified with @RunWith.