Hi Kumuda,

You can always put a call to your method in setUp() .  Just override
that method and it is guaranteed to be called when the tests for this
class begins. You can create one that looks like this and it should
work fine:

        protected void setUp() throws Exception {
                super.setUp();
                //call your method here
                beginXXX();
        }

I hope that helps.

-Chris

On 3/15/06, Kumuda Bhaskar <[EMAIL PROTECTED]> wrote:
> Hello,
>
> In my Tester class, I have written beginXXX() method.
>
> But that method is not getting called when I ran the Tester.
>
> How will I make sure that the beginXXX() method should be called??
>
>
>
> Thanks and Regards
>
> KumudaRajarshi
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to