- Mastering Software Testing with JUnit 5
- Boni García
- 153字
- 2021-07-02 15:34:21
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, path names, dummy URLs, user input, and Twitter handles are shown as follows: “The @AfterAll and @BeforeAll methods are executed only once”.
A block of code is set as follows:
package io.github.bonigarcia;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
class StandardTest {
@Test
void verySimpleTest () {
assertTrue(true);
}
}
Any command-line input or output is written as follows:
mvn test
New terms and important words are shown in bold like this: “Compatibility is the degree to which a product, system or component can exchange information with other products”.
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
推薦閱讀
- 微信公眾平臺與小程序開發:從零搭建整套系統
- 數字媒體應用教程
- LabVIEW 2018 虛擬儀器程序設計
- Instant Apache Stanbol
- Mastering Objectoriented Python
- Mastering Articulate Storyline
- Practical DevOps
- 你必須知道的204個Visual C++開發問題
- Python應用輕松入門
- Apache Mahout Clustering Designs
- 可解釋機器學習:模型、方法與實踐
- Mastering JBoss Enterprise Application Platform 7
- Terraform:多云、混合云環境下實現基礎設施即代碼(第2版)
- 時空數據建模及其應用
- OpenCV with Python Blueprints