官术网_书友最值得收藏!

Advanced features of JUnit 4

One of the most significant innovations introduced in JUnit 4 was the use of rules. Rules allow flexible addition or redefinition of the behavior of each test method in a test class. A rule should be included in a test case by annotating a class attribute with the annotation @Rule. The type of this attribute should inherit the JUnit interface org.junit.rulesTestRule. The following rules are provided out of the box in JUnit 4:

  • ErrorCollector: This rule allows execution of a test to continue after the first problem is found
  • ExpectedException: This rule allows to verify that a test throws a specific exception
  • ExternalResource: This rule provides a base class for Rules that set up an external resource before a test (a file, socket, server, database connection, and so on) and guarantee to tear it down afterward
  • TestName: This rule makes the current test name available inside test methods
  • TemporaryFolder: This rule allows creation of files and folders that should be deleted when the test method finishes
  • Timeout: This rule applies the same timeout to all test methods in a class
  • TestWatcher: It is a base class for rules that will keep a log of each passing and failing test

Another advance JUnit 4 features allow to:

  • Execute tests is a given order, using the annotation @FixMethodOrder.
  • Create assumptions using the class Assume. This class offers many static methods, such as assumeTrue(condition), assumeFalse(condition), assumeNotNull(condition), and assumeThat(condition). Before executing a test, JUnit checks the assumptions present in the test. If one of the assumptions fail, the JUnit runner ignores the tests with failing assumptions.
  • JUnit provides a timeout value (in milliseconds) in the @Test annotation to make sure that if a test runs longer than the specified value, the test fails.
  • Categorize tests using the test runner Categories and identify the types of test annotating the tests method with the annotation Category.
Meaningful examples for each of one of the earlier mentioned features can be found in the GitHub repository ( https://github.com/bonigarcia/mastering-junit5).
主站蜘蛛池模板: 泗水县| 紫阳县| 莱西市| 陇南市| 吉水县| 和政县| 民丰县| 哈尔滨市| 丹寨县| 公主岭市| 广安市| 江川县| 泸定县| 苍梧县| 南召县| 临武县| 扶绥县| 清水县| 郧西县| 台山市| 启东市| 会宁县| 从江县| 怀远县| 云和县| 泊头市| 扎囊县| 青田县| 隆德县| 汕头市| 承德市| 浦北县| 乌鲁木齐县| 钦州市| 大洼县| 永兴县| 萨迦县| 高尔夫| 宁阳县| 云阳县| 丹凤县|