Module Test::Unit::TestCaseNotificationSupport
In: lib/test/unit/notification.rb

Methods

included   notify  

Included Modules

NotificationHandler

Public Class methods

Public Instance methods

Notify some information.

Example:

  def test_notification
    notify("I'm here!")
    # Reached here
    notify("Special!") if special_case?
    # Reached here too
  end

options:

  :backtrace override backtrace.

[Validate]