JUnit: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 12: Line 12:
<syntaxhighlight lang='groovy'>
<syntaxhighlight lang='groovy'>
dependencies {
dependencies {
     testImplementation('junit:junit:4.12')
     testImplementation "junit:junit:4.12"
}
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 07:40, 23 February 2019

External

Internal

Overview

Dependencies

dependencies {
    testImplementation "junit:junit:4.12"
}

Concepts

Test Runner

A JUnit plugin that provides custom testing behavior. Specified with @RunWith.

Annotations