testing local vars and exceptions

R

Raymond O'connor

Hi
Two questions:
I'm new to testing, so my apologies if this is really basic, but is
there anyway to test the value of a local variable in my unit tests? So
far I've been making everything instance vars that don't really need to
be, so I can see their value in my unit tests.

Also, one of my methods calls another method in a 3rd party library that
could throw an exception if there's no network connection. My method
has some special logic in it to handle this exception. I would like to
test this in a unit test for the method but I can't figure out how to
throw this exception since its raised in a method I don't have control
over. I guess I could put a 'raise exception if test' in my method but
that doesn't seem right. Is there any better way to test this?

Thanks in advance for the help,
-Ray
 
P

Pit Capitain

Raymond said:
I'm new to testing, so my apologies if this is really basic, but is
there anyway to test the value of a local variable in my unit tests? So
far I've been making everything instance vars that don't really need to
be, so I can see their value in my unit tests.

I have never needed to test local variables. Can you give an example why
you would like to do this?
Also, one of my methods calls another method in a 3rd party library that
could throw an exception if there's no network connection. My method
has some special logic in it to handle this exception. I would like to
test this in a unit test for the method but I can't figure out how to
throw this exception since its raised in a method I don't have control
over. I guess I could put a 'raise exception if test' in my method but
that doesn't seem right. Is there any better way to test this?

Test doubles. See
http://www.martinfowler.com/articles/mocksArentStubs.html for an
explanation. There are some Ruby frameworks you can use. Look for "mock"
on http://rubyforge.org.

Regards,
Pit
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top