Skip to content
Advertisement

Tag: oracle-adf

How to test public method in Application Module in Oracle ADF?

I am working on a project that is based on the Oracle ADF framework. We have an AM (application module) called TestAM.xml that has interface TestAM.java and implementation class TestAMImpl.java. TestAMImpl.java has a public method with a method signature: String fetchSomething(String id) I want to test/debug this method locally by passing the ID parameter, how can I do that? I

Advertisement