‎2007 Apr 18 9:36 AM
how to see the name of the class pool of my global class.
can i use this class pool in my abap editor program. so that i can make friendship with it.
‎2007 Apr 18 9:55 AM
HI john
Yo can define your ABAP Unit test class as a friend of the global class to be tested in the local class definition include of your global class. So, you have to add a line of code like
CLASS <name of global class to be tested> DEFINITION LOCAL FRIENDS <name of local ABAP Unit class> in the include where the definition of local ABAP Unit Class is in. Then you can call the private methods of your global class in the local abap unit class methods.
just refer these links
<b>http://help.sap.com/saphelp_nw2004s/helpdata/en/ec/d9ab291b0b11d295400000e8353423/content.htm</b>
Regards Rk