JUnit is a unit testing package for Java language and can be used to test Oracle ADF application as ADF is built on top of the J2EE framework. Unit testing is basically is a process to verify the smallest testable module against some defined test criteria. Here I am going to illustrate that how can we set up and use JUnit in JDeveloper 12.2.1.3 to test ADF application.
JDeveloper 12.2.1.3 comes with JUnit extension so no need to install it separately. Letโs start by creating a Fusion Web Application in JDeveloper IDE. Here I am taking Departments table of default HR Schema to prepare the model for ADF Application.
Next step is to create a new project to hold unit tests so that whole application doesnโt look ambiguous. Right click on the Application name and select Newโ> From Galleryโ> Generalโ> Projects โ> Java Project
Put a name for that project and click on Finish button.
Now next step is to create Test Suite for business components and before that, we should know some terminology that is used in unit testing.
Test Suiteโ A group of Test Cases
Test Fixtureโ A class to handle long running test cases and keep the state of multiple test cases.
Assertationโ To check the result of a test case against the expected result.
Now to open test suite wizard, Right click on new project and select Newโ> From Galleryโ> Generalโ> Unit Tests โ> ADF Business Components Test Suite
Click on OK button and configure the test suite. You can see that here I have selected the Model project and DeptAm application module to test. You need to select Configuration for database connection too and here I have selected DeptAMLocal.
Click on the Next button and see that this wizard will generate a Test Suite class and a Test Fixture class. This wizard will also generate separate unit test classes for each view object in the application.
Now click on Finish button and you can under new project all files are created.
DeptAmFixture.javaโ Test Fixture Class
AllDeptAMTests.javaโ Test Suite Class
DepartmentsVO1VOTest.javaโ Unit Test Class for Departments ViewObject
Now open DepartmentsVO1VOTest.java class and look at the default test case that checks that the Department View Object should not be null.
You can see here @Test annotation, this indicates that this java method is a unit test and after performing test assert is used to verify the test result.
@Test
public void testAccess() {
ViewObject view = fixture1.getApplicationModule().findViewObject("DepartmentsVO1");
assertNotNull(view);
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}To check this default test case, Right click on test suite class and select run. You can see that unit test execute successfully.
Next step is to create some of the own unit tests, I have created this unit test that checks that the Department Id should not null in a newly created row.
@Test
public void checkDeptIdNotNull() {
ViewObject deptVo = fixture1.getApplicationModule().findViewObject("DepartmentsVO1");
Row newRow = deptVo.createRow();
newRow.setAttribute("DepartmentId", 222);
newRow.setAttribute("DepartmentName", "Testing");
assertNotNull("DepartmentId should not be null", newRow.getAttribute("DepartmentId"));
}So in the above code, I have created a new row in Departments view object and set 222 in Department Id. Now run this test case.
You can see here that test is passed successfully because Department Id is not null, Thatโs great. Now comment this line in the code
//newRow.setAttribute(โDepartmentIdโ, 222);
and run test again
See that test is failed with AssertionError as Department Id is null this time. This is how we can write our own unit tests to check.
Here I am writing one more test case to check whether the department is in the database or not. I am passing 1990 as department id that is not in the database.
@Test
public void findDepartment() {
ViewObject deptVo = fixture1.getApplicationModule().findViewObject("DepartmentsVO1");
int deptId = 1990;
Row row[] = deptVo.findByKey(new Key(new Object[] { deptId }), 1);
Integer count = row.length;
//assertTrue fails when second parameter evaluates to "false"
assertTrue("Department Not Found", count.compareTo(0) == 1);
}Letโs see the result
This is how we configure and use JUnit in Oracle ADF Application for Unit Testing.
Published on Java Code Geeks with permission by Ashish Awasthi, partner at our JCG program. See the original article here: Unit testing of ADF Application using JUnit Opinions expressed by Java Code Geeks contributors are their own. |
Thank you!
We will contact you soon.
Ashish AwasthiJuly 3rd, 2019Last Updated: June 28th, 2019

This site uses Akismet to reduce spam. Learn how your comment data is processed.