Friday 24 June 2022

TestNG Helper Attributes | dependsOnMethods, enabled, timeOut

                  In this video, we will see TestNG Helper Attributes | dependsOnMethods, enabled, timeOut.

               

Program Code(Program1.java):

package mytest;


import org.testng.annotations.Test;


public class Program1 {


@Test(enabled=false)

public void AdmissionLogin()

{

System.out.println("Admission Login");//code for testcase

}

@Test(timeOut=5000)

public void AdmissionBrokenlinks()

{

System.out.println("Admission Broken links"); //code for testcase

}


}


Program Code(Program2.java):

package mytest;


import org.testng.annotations.Test;


public class Program2 {


@Test

public void PlacementLogin()

{

System.out.println("Placement Login");//code for testcase

}

@Test

public void PlacementBrokenlinks()

{

System.out.println("Placement Broken links"); //code for testcase

}

@Test(dependsOnMethods= {"PlacementLogin","PlacementBrokenlinks"})

public void FacultyLogin()

{

System.out.println("Faculty Login");//code for testcase

}

@Test

public void FacultyBrokenlinks()

{

System.out.println("Faculty Broken links"); //code for testcase

}


}


Program Code(testng.xml):

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">

<suite name="Suite">


  <test name="College">

 

    <classes>

      <class name="mytest.Program1"></class>

      <class name="mytest.Program2"></class>

    </classes>

  </test> 

   

</suite>  


Watch on YouTube: https://www.youtube.com/watch?v=MJeSkHe2M1M

No comments:

Post a Comment