TestNG ITestContext Usage

testng

Hello, I want to write about TestNG ITestContext class usage. TestNG offers the ITestContext interface to store and shared that kind of objects through test execution. I see that many people use inheritance in their automation project. That’s cool, that’s one of … Read more

JUnit 5 Extensions

junit5

Junit 5 Extensions makes the Junit 5 much more powerful and extensible. In this article, we will learn JUnit Extensions.  By using JUnit Extensions we will enhance and extend JUnit capabilities. By extending the behavior of our tests classes and … Read more

JUnit 5 Annotations

junit5

Hi all, in this article, we will learn the basic JUnit 5 annotations. If you are coming from JUnit 4, you will see that some of the annotations changed in JUnit 5. All core annotations are located in the org.junit.jupiter.api package … Read more

JUnit 5 Architecture

junit5

Hi all, in this article, we will learn the JUnit 5 architecture and its building blocks. JUnit is one of the most common unit testing and test runner framework. Some teams still using JUnit 4 but day by day JUnit … Read more