- Hands-On Test Management with Jira
- Afsana Atar
- 173字
- 2021-07-02 13:10:41
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Testers may also have to use different types of files, such as .doc, .docx, .txt, .pdf, .xls, .xlsx, .csv, .png, or .jpeg to import the data in order to make sure that it works or doesn't work as defined in the test case."
A block of code is set as follows:
package JenkinsDemoPkg;
import org.testng.annotations.Test;
public class demoJenkins {
@Test
public void testJenkins(){
System.out.println("Hello World");
}
}
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Let's click on the Create new project button."
Warnings or important notes appear like this.
Tips and tricks appear like this.