Top "Testng" questions

TestNG is a testing framework focused on providing both unit and functional testing abilities in the Java programming language.

Cucumber with TestNG

We have a very extensive framework in TestNG with Selenium WebDriver and I want to be able to continue using …

cucumber bdd testng
How can I tell Gradle to use my testng.xml file for Test Classes and Ordering?

I am attempting to have Gradle execute some tests defined using a testng.xml file. My testng.xml file looks …

testng gradle
Does TestNG has runner like SpringJUnit4ClassRunner

When I write tests in JUnit (in Spring context) I usualy do it like this: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("…

java spring junit testng
Detect test failure in testng @AfterMethod

I want to take a screenshot if a test fails. Rather than wrapping all test methods with try/catch blocks, …

java testng
Intellij not shows test results in console

Howto set the output in test console? When i run test by default the output is replaced by the summary …

junit intellij-idea console testng
java.lang.NoClassDefFoundError: Could not initialize class org.mockito.internal.util.MockUtil

I want to use testng + powermock + spring to run test code,my jar version is: powermock = 1.6.2 powermock-module-testng = 1.6.2 mockito = 1.10.19 testng = 6.8.7 spring = 4.1.1.…

java mockito testng powermockito
Extent Report no generating html

Hi I am trying to create report through Extent Report; the code gives no error and runs successfully but there …

selenium selenium-webdriver testng extentreports extent
How to parametrize Maven surefire plugin so I can choose which TestNG suites to run

I've got many test suites in TestNG. These are XML files. I want to be able to choose multiple XML …

java unit-testing maven testng maven-surefire-plugin
TestNG @BeforeMethod method not called when it resides in superclass and a specific group is run

I am trying to use a group to run a subset of tests relevant to what I am working on …

java testing testng