From 54ec1c4fe81672ca66f327ef6ae170f458cd79e5 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 15 Aug 2007 20:57:30 +0000 Subject: sorry. I made wrong tags. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_5_54@13009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby_1_8_5/test/testunit/test_testresult.rb | 104 ---------------------------- 1 file changed, 104 deletions(-) delete mode 100644 ruby_1_8_5/test/testunit/test_testresult.rb (limited to 'ruby_1_8_5/test/testunit/test_testresult.rb') diff --git a/ruby_1_8_5/test/testunit/test_testresult.rb b/ruby_1_8_5/test/testunit/test_testresult.rb deleted file mode 100644 index 95d631a082..0000000000 --- a/ruby_1_8_5/test/testunit/test_testresult.rb +++ /dev/null @@ -1,104 +0,0 @@ -# Author:: Nathaniel Talbott. -# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved. -# License:: Ruby license. - -require 'test/unit/testcase' -require 'test/unit/testresult' - -module Test - module Unit - class TC_TestResult < TestCase - def setup - @my_result = TestResult.new - @my_result.add_assertion() - @my_result.add_failure("") - @my_result.add_error("") - end - def test_result_changed_notification - called1 = false - @my_result.add_listener( TestResult::CHANGED) { - |result| - assert_block("The result should be correct") { result == @my_result } - called1 = true - } - @my_result.add_assertion - assert_block("Should have been notified when the assertion happened") { called1 } - - called1, called2 = false, false - @my_result.add_listener( TestResult::CHANGED) { - |result| - assert_block("The result should be correct") { result == @my_result } - called2 = true - } - @my_result.add_assertion - assert_block("Both listeners should have been notified for a success") { called1 && called2 } - - called1, called2 = false, false - @my_result.add_failure("") - assert_block("Both listeners should have been notified for a failure") { called1 && called2 } - - called1, called2 = false, false - @my_result.add_error("") - assert_block("Both listeners should have been notified for an error") { called1 && called2 } - - called1, called2 = false, false - @my_result.add_run - assert_block("Both listeners should have been notified for a run") { called1 && called2 } - end - def test_fault_notification - called1 = false - fault = "fault" - @my_result.add_listener(TestResult::FAULT) { - | passed_fault | - assert_block("The fault should be correct") { passed_fault == fault } - called1 = true - } - - @my_result.add_assertion - assert_block("Should not have been notified when the assertion happened") { !called1 } - - @my_result.add_failure(fault) - assert_block("Should have been notified when the failure happened") { called1 } - - called1, called2 = false, false - @my_result.add_listener(TestResult::FAULT) { - | passed_fault | - assert_block("The fault should be correct") { passed_fault == fault } - called2 = true - } - - @my_result.add_assertion - assert_block("Neither listener should have been notified for a success") { !(called1 || called2) } - - called1, called2 = false, false - @my_result.add_failure(fault) - assert_block("Both listeners should have been notified for a failure") { called1 && called2 } - - called1, called2 = false, false - @my_result.add_error(fault) - assert_block("Both listeners should have been notified for an error") { called1 && called2 } - - called1, called2 = false, false - @my_result.add_run - assert_block("Neither listener should have been notified for a run") { !(called1 || called2) } - end - def test_passed? - result = TestResult.new - assert(result.passed?, "An empty result should have passed") - - result.add_assertion - assert(result.passed?, "Adding an assertion should not cause the result to not pass") - - result.add_run - assert(result.passed?, "Adding a run should not cause the result to not pass") - - result.add_failure("") - assert(!result.passed?, "Adding a failed assertion should cause the result to not pass") - - result = TestResult.new - result.add_error("") - assert(!result.passed?, "Adding an error should cause the result to not pass") - end - end - end -end -- cgit v1.2.3