CSC/ECE 517 Fall 2010/ch1 1f vn: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 7: Line 7:


=Test::Unit=
=Test::Unit=
Ruby comes with an in-built, ready to use unit testing framework called Test::Unit. It is a XUnit type framework and typically have a setup method for initialization, a teardown method for cleanup and the actual test methods itself. The core part of test::unit framework is the ability to assert statements using a set of assert methods. The test methods should start with 'test' prefix. This helps in isolating the test methods from the helper methods.
Ruby comes with an in-built, ready to use unit testing framework called Test::Unit. It is a XUnit type framework and typically have a setup method for initialization, a teardown method for cleanup and the actual test methods itself. The tests themselves are bundled separately from the code it is testing.   The test methods should start with 'test' prefix. This helps in isolating the test methods from the helper methods.
==Assertions==
 
==Test Fixture==
Test fixture represent the initial environment setup(eg. data) that must present for the tests to run and expect a particular outcome. This is typically done in the setup()/teardown() method.
 
==Assertion==
The core part of test::unit framework is the ability to assert statements using a set of assert methods.
 
==Example==


=Shoulda=
=Shoulda=

Revision as of 20:11, 6 September 2010

Introduction

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. Unit testing frameworks provides us with constructs and methodologies which simplifies the process of unit testing. This chapter walks through three different unit testing frameworks available for Ruby, explains how to use them with examples, and compares them with one another. The three commonly used unit testing frameworks for ruby are

  1. Test::Unit
  2. Shoulda
  3. RSpec

Test::Unit

Ruby comes with an in-built, ready to use unit testing framework called Test::Unit. It is a XUnit type framework and typically have a setup method for initialization, a teardown method for cleanup and the actual test methods itself. The tests themselves are bundled separately from the code it is testing. The test methods should start with 'test' prefix. This helps in isolating the test methods from the helper methods.

Test Fixture

Test fixture represent the initial environment setup(eg. data) that must present for the tests to run and expect a particular outcome. This is typically done in the setup()/teardown() method.

Assertion

The core part of test::unit framework is the ability to assert statements using a set of assert methods.

Example

Shoulda

RSpec

Comparison