Quantcast
Channel: Examples Java Code Geeks » junit
Browsing all 12 articles
Browse latest View live

junit rules example

The implementation of a Rule might look like this: import org.junit.rules.TestRule; import org.junit.runner.Description; import org.junit.runners.model.Statement; public class LoggingRule implements...

View Article


JUnit Getting Started Example

In this example we are going to introduce some basic annotations and asserts of JUnit4. JUnit4 is a test framework which is used by developers so that they can be ensured that their code works as...

View Article


JUnit Using Assertions and Annotations Example

In this example we are going to create test cases so as to understand the use of assertions and annotations in JUnit testing framework. Also, we will see how to run these test cases from the command...

View Article

JUnit Suite Test Example

In this example we are going to explain how to use a test suite in JUnit testing framework. Test suite is a collection of some test cases from different classes that can be run all together using...

View Article

JUnit Ignore Test Example

In this example we are going to see how to use @Ignore annotation in JUnit testing framework. Also, we will see how to run the created test cases from the command line by using the...

View Article


JUnit Time Test Example

In this example we are going to see how to use @Test annotation along with its optional parameter timeout in JUnit testing framework. Also, we will see how to run our test case from the command line by...

View Article

JUnit Exceptions Test Example

In this example we are going to see how to use @Test annotation along with its optional parameter expected in JUnit testing framework. Also, we will see how to run our test case from the command line...

View Article

JUnit Parameterized Test Example

In this example we are going to see how to create a parameterized test in JUnit testing framework. 1. Create the java class to be tested Create a folder named JUnitParameterized. This is the folder...

View Article


JUnit Annotations Example

JUnit is a unit testing framework for the Java programming language. JUnit has been important in the development of test-driven development, and is one of a family of unit testing frameworks which is...

View Article


JUnit Assertions Example

JUnit is a unit testing framework for the Java programming language. JUnit has been important in the development of test-driven development, and is one of a family of unit testing frameworks which is...

View Article

JUnit RunWith Example

In this example we are going to explain how to run simultaneously more than one test cases using JUnit testing framework and Eclipse IDE. This collection of different test cases that will be executed...

View Article

JUnit @Before and @BeforeClass Example

In this example we are going to explain the difference between the @Before and @BeforeClass annotations of JUnit testing framework, using Eclipse IDE. 1. Create JUnit test In this section, we will...

View Article
Browsing all 12 articles
Browse latest View live