Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Testing private methods: Declaring a local test friend

martin_bschen
Explorer

I try to test the private methods of a class and therefor I declare a local test friend following this scheme:

class lcl_test definition deferred.
class zcl_testee definition local friends lcl_test.
...
class lcl_test definition for testing ...
...

This is been discussed in this wiki article or in this blog entry.

But all I get is the syntax error "The statement CLASS is unexpected".

What is wrong here?

My complete code:

CLASS lcl_test DEFINITION DEFERRED.
CLASS zcl_testee DEFINITION
 PUBLIC FINAL CREATE PUBLIC .
  PUBLIC SECTION.
  PROTECTED SECTION.
  PRIVATE SECTION.
ENDCLASS.

CLASS zcl_testee IMPLEMENTATION.
ENDCLASS.

CLASS lcl_test DEFINITION.
ENDCLASS.

CLASS lcl_test IMPLEMENTATION.
ENDCLASS.
1 ACCEPTED SOLUTION

horst_keller
Product and Topic Expert
Product and Topic Expert

Take my classes of package SABAP_DEMOS_CAR_RENTAL_APPL as an example, e.g. CL_DEMO_CR_RESERVATION_CATA. Check the includes where the test classes reside and where they are declared DEFERRED and as friends (local definitions and implementations).

7 REPLIES 7

pokrakam
Active Contributor

Where are you writing the code, report or class?

If report, then your class cannot be public. If it's in a class then the unit test class must be in the local test classes section, tab at the bottom of your editor if you use Eclipse, somewhere in the menu if you use SE24/80.

The all the code in your first block goes in the unit test section. The design here is that it doesn't even get compiled in a productive system, hence the strong separation.

horst_keller
Product and Topic Expert
Product and Topic Expert

Take my classes of package SABAP_DEMOS_CAR_RENTAL_APPL as an example, e.g. CL_DEMO_CR_RESERVATION_CATA. Check the includes where the test classes reside and where they are declared DEFERRED and as friends (local definitions and implementations).

That solved my question.

What was missing was the following code in the "Local Types"-Include

CLASS lcl_test DEFINITION DEFERRED.
CLASS zcl_testee DEFINITION LOCAL FRIENDS lcl_test

The class zcl_testee has a second definition in the "Global Class"-Include, without the LOCAL FRIENDS keyword.

0 Kudos

Is the behavior related to the ABAP version?

I have been defining the test class(es) local friends in the "Test Classes" include(CCAU). Never got an error in ABAP 740 & now on 750 too!

horst_keller
Product and Topic Expert
Product and Topic Expert

Placing the two lines in CCAU works for me in 7.40, 7.50 and higher.

But it is better style to place local declarations in CCDEF/CCIMP.

Thanks for the clarification! Going forward i'll stick to your recommendation.

0 Kudos

Thank you ! , This is really helpful , Good Referance for Unit Testing