CSC/ECE 517 Fall 2011/ch2 2e gp: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
There are a lot of testing tools that are available for [http://en.wikipedia.org/wiki/Ruby Ruby language], they have different features and can be applied on different platforms. Here is a brief introduction and feature comparisons of popular testing frameworks. [EDIT NEEDED]
There are a lot of testing tools that are available for [http://en.wikipedia.org/wiki/Ruby Ruby language], they have different features and can be applied on different platforms. Here is a brief introduction and feature comparisons of popular testing frameworks. [EDIT NEEDED]


= Unit Testing Frameworks =
= Unit Testing =
[http://en.wikipedia.org/wiki/Unit_testing Unit Testing] is a method by which we can isolate and test a unit functionality of the program, typically individual methods during and long after the code is written.
[http://en.wikipedia.org/wiki/Unit_testing Unit Testing] is a method by which we can isolate and test a unit functionality of the program, typically individual methods during and long after the code is written.


=== Test::Unit ===
=== Test::Unit ===
== System Testing ==

Revision as of 11:02, 17 September 2011

Testing Frameworks for Ruby

This page serves as a knowledge source for understanding the different Testing Frameworks available for Ruby.

Introduction

There are a lot of testing tools that are available for Ruby language, they have different features and can be applied on different platforms. Here is a brief introduction and feature comparisons of popular testing frameworks. [EDIT NEEDED]

Unit Testing

Unit Testing is a method by which we can isolate and test a unit functionality of the program, typically individual methods during and long after the code is written.

Test::Unit

System Testing