Posts

Showing posts from June, 2023
  MAVEN : A BUILD MANAGEMENT TOOL Maven as a build automation tool and dependency management system for your Java projects. Maven provides many commands that are useful in the SDET workflow. Here are some commonly used Maven commands and their purposes: 𝐦𝐯𝐧 𝐜𝐥𝐞𝐚𝐧: Cleans the project by deleting the target directory, which contains the compiled classes and build artifacts. This command is often used before starting a fresh build. 𝐦𝐯𝐧 𝐜𝐨𝐦𝐩𝐢𝐥𝐞: Compiles the source code of the project. It compiles the Java source files in the src/main/java directory and places the compiled class files in the target/classes directory. 𝐦𝐯𝐧 𝐭𝐞𝐬𝐭: Runs the tests for the project. I𝘵 𝘦𝘹𝘦𝘤𝘶𝘵𝘦𝘴 𝘵𝘩𝘦 𝘵𝘦𝘴𝘵𝘴 𝘪𝘯 𝘵𝘩𝘦 𝘴𝘳𝘤/𝘵𝘦𝘴𝘵/𝘫𝘢𝘷𝘢 𝘥𝘪𝘳𝘦𝘤𝘵𝘰𝘳𝘺. Maven looks for test classes with names matching the pattern *𝐓𝐞𝐬𝐭 𝐨𝐫 *𝐈𝐓 (𝐈𝐧𝐭𝐞𝐠𝐫𝐚𝐭𝐢𝐨𝐧 𝐓𝐞𝐬𝐭) 𝐛𝐲 𝐝𝐞𝐟𝐚𝐮𝐥𝐭. Test reports and results are generated in the 𝐭𝐚𝐫𝐠𝐞𝐭/𝐬𝐮𝐫𝐞𝐟𝐢𝐫𝐞...

#https #httpmethods #api #properties API TERMINOLOGY Part-8

Image