JUnit: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 24: Line 24:


* [[@RunWith]]
* [[@RunWith]]
* [[@BeforeClass]]/[[@AfterClass]]

Revision as of 23:39, 14 January 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