[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

how to test a ruby class

doug.baker

2/10/2006 7:08:00 PM

> Hi: I just installed Ruby and have FreeRIDE open. In Ruby, is there a
> method comparable to the "main" method in java that will run the class for
> testing?
> I would like to run my class from the IDE.
>
> Thanks,
> Doug
>
>
E-MAIL CONFIDENTIALITY NOTICE:
The contents of this e-mail message and any attachments are intended solely
for the addressee(s) and may contain confidential and/or legally privileged
information. If you are not the intended recipient of this message or if
this message has been addressed to you in error, please immediately alert
the sender by reply e-mail and then delete this message and any attachments.
If you are not the intended recipient, you are notified that any use,
dissemination, distribution, copying, or storage of this message or any
attachments is strictly prohibited.
2 Answers

Craig Demyanovich

2/10/2006 7:45:00 PM

0

On Feb 10, 2006, at 2:08 PM, doug.baker@ficoh.com wrote:

>> Hi: I just installed Ruby and have FreeRIDE open. In Ruby, is
>> there a
>> method comparable to the "main" method in java that will run the
>> class for
>> testing?
>> I would like to run my class from the IDE.

An alternative to ad-hoc testing in an IDE or via the command line is
using independent, repeatable tests, i.e., unit testing. Mike Clark
has a good, brief introduction to unit tests as learning tests here:
http://www.clarkware.com/cgi/blosxom/.... Also, you can find
the docs for Test::Unit, Ruby's built-in unit testing framework,
here: http://www.ruby-doc.org/stdlib/libdoc/test/unit/rdo...
Test/Unit.html.

Regards,
Craig


David Vallner

2/10/2006 7:47:00 PM

0

Dna Piatok 10 Február 2006 20:08 doug.baker@ficoh.com napísal:
> > Hi: I just installed Ruby and have FreeRIDE open. In Ruby, is there a
> > method comparable to the "main" method in java that will run the class
> > for testing?
> > I would like to run my class from the IDE.
> >
> > Thanks,
> > Doug
>

My two cents follow: I can't stand the very sight of people making a script or
class executable for the sake of testing - main() methods and the like are
supposed to execute a standalone program, and that's that. If you want to
test, then do it properly, create a separate hierarchy of files with unit
tests. It's just as easy, if not easier to write, and you don't clutter your
business logic with test code.

David Vallner