Simple project in testng

Below screenshot shows how sample TestNG project looks like in IntelliJ IDEA.

testng project

Simple TestNG project using maven in IntelliJ IDEA Here is the POM.xml for the above project.
 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.softpost</groupId>
<artifactId>testng-artifact</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>testng-artifact</name>
<url>https://maven.apache.org</url>

<properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
  <dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.9.10</version>
    <scope>test</scope>
  </dependency>
</dependencies>
</project>    

Web development and Automation testing

solutions delivered!!