Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test::unit::result(3pm) [debian man page]

Test::Unit::Result(3pm) 				User Contributed Perl Documentation				   Test::Unit::Result(3pm)

NAME
Test::Unit::Result - unit testing framework helper class SYNOPSIS
This class is not intended to be used directly DESCRIPTION
This class is used by the framework to record the results of tests, which will throw an instance of a subclass of Test::Unit::Exception in case of errors or failures. To achieve this, this class gets called with a test case as argument. It will call this test case's run method back and catch any excep- tions thrown. It could be argued that Test::Unit::Result is the heart of the PerlUnit framework, since TestCase classes vary, and you can use one of sev- eral Test::Unit::TestRunners, but we always gather the results in a Test::Unit::Result object. This is the quintessential call tree of the communication needed to record the results of a given test: $aTestCase->run() { # creates result $aTestResult->run($aTestCase) { # catches exception and records it $aTestCase->run_bare() { # runs test method inside eval $aTestCase->run_test() { # calls method $aTestCase->name() # and propagates exception # method will call Assert::assert() # to cause failure if test fails on # test assertion # it finds this because $aTestCase is-a Assert } } } } Note too that, in the presence of Test::Unit::TestSuites, this call tree can get a little more convoluted, but if you bear the above in mind it should be apparent what's going on. AUTHOR
Copyright (c) 2000-2002, 2005 the PerlUnit Development Team (see Test::Unit or the AUTHORS file included in this distribution). All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
o Test::Unit::Assert o Test::Unit::TestCase o Test::Unit::Exception perl v5.8.8 2006-09-13 Test::Unit::Result(3pm)

Check Out this Related Man Page

Test::Unit::Runner::Terminal(3pm)			User Contributed Perl Documentation			 Test::Unit::Runner::Terminal(3pm)

NAME
Test::Unit::Runner::Terminal - unit testing framework helper class SYNOPSIS
use Test::Unit::Runner::Terminal; my $testrunner = Test::Unit::Runner::Terminal->new(); $testrunner->start($my_test_class); DESCRIPTION
This class is a test runner for the command line style use of the testing framework. It is similar to its parent class, Test::Unit::TestRunner, but it uses terminal escape sequences to continually update a more informative status report as the runner progresses through the tests than just a string of dots, E's and F's. The status report indicates the number of tests run, the number of failures and errors encountered, which test is currently being run, and where it lives in the suite hierarchy. The class needs one argument, which is the name of the class encapsulating the tests to be run. OPTIONS
-wait wait for user confirmation between tests -v version info AUTHOR
Copyright (c) 2000-2002, 2005 the PerlUnit Development Team (see Test::Unit or the AUTHORS file included in this distribution). All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
o Test::Unit::TestCase o Test::Unit::Listener o Test::Unit::TestSuite o Test::Unit::Result o Test::Unit::TkTestRunner o For further examples, take a look at the framework self test collection (t::tlib::AllTests). perl v5.8.8 2006-09-13 Test::Unit::Runner::Terminal(3pm)
Man Page

12 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix Test

Hi, I just started studying AI at the university of amsterdam and I heard there is some basic UNIX test which is available online. Well, if any of you knows a link to that test I would truely appreciate it. Thanks a lot, L (1 Reply)
Discussion started by: L.A. BOSS
1 Replies

2. Shell Programming and Scripting

Specific Length awk Results

I am awk-ing a line, and only want to get the results of the five chrs. following my field seperator. the line of prose is: Unit=01982 (PICO RIVERA) Unit=I1001 (INTERMOUNTAIN AREA) Unit=E1000 (INTERMOUNTAIN WEST DIVISION) failing in using an awk of: awk -F= '/Unit/{print $2 length(5)}'... (3 Replies)
Discussion started by: gozer13
3 Replies

3. UNIX for Dummies Questions & Answers

Test Ports

Hi, Which command or file to use to test the ports of a server? Thanks.... (3 Replies)
Discussion started by: By_Jam
3 Replies

4. What is on Your Mind?

Test : Which OS are you ?

I've searched the forum, but it seems that noone has posted this test - Which OS Are You? :) Have fun taking the quiz, and let us know your results :) I was "PalmOS - comfortable with who you are" (8 Replies)
Discussion started by: sysgate
8 Replies

5. UNIX for Dummies Questions & Answers

Test....

hi! it's possible to test if a user exist or not? does exist something like -d for directories? i thought i could use getenv but i don't know how to use it for this purpose... how can i verify if a variable is a number and not a generic string? i can't use regex, since i'm using bash shell :( ... (3 Replies)
Discussion started by: Kaminski
3 Replies

6. Shell Programming and Scripting

Test variable

hi, i store a constant in a variable and want to test whether it is M or Z. how can i achieve this?? please help variable='M' if then ehco 'success' fi; is this right ?? (2 Replies)
Discussion started by: javeed7
2 Replies

7. HP-UX

Ftp cannot put file larger than 64kb

Hi gurus, I have a problem with ftp access. The first 2 test e.g. Test A & Test B was successful with the file size 64kb (800++ numbers). The third test with file size 120kb was failed. The error is "Netout :Connection reset by peer". No password entered manually since the test run from the... (3 Replies)
Discussion started by: yeazas
3 Replies

8. Shell Programming and Scripting

getting results after using ps command

Hi, I want to use the following ps coomand: ps -ef | grep test Result of this command is: Test 161220 1 0 Oct 04 - 1:11 /test/test Just mentioning the description of each value in the result: UID PID PPID C STIME TTY TIME CMD Test 161220... (11 Replies)
Discussion started by: yale_work
11 Replies

9. Shell Programming and Scripting

Regarding automatic keystroke

Hi All , I am writing a shell script for a 3D test case . The 3D Test case involves the user to press some keys to see the changes in the 3d test case . The user has to press p , r , a , z etc to observe the changes on screen . Now please let me know how can i implement the keystroke p , a ,... (1 Reply)
Discussion started by: dskonnur
1 Replies

10. Programming

Test program not giving expected result

I have five classes. 2 composition classes,1 aggregation class and 1 dependency class.I have coded all the classes but one of my test program is not giving me the expected result.I have the following classes: TimeStamp Interval (composition of 2 TimeStamps) TimeSheet ( aggregation of many... (3 Replies)
Discussion started by: moraks007
3 Replies

11. Shell Programming and Scripting

Test command with "-z" and "-n"

Hello all, Please let me know, why the value of $? is diff for -z and -n. And explain what are the operends we can use with "test" and their purpose.. $ test -z "" $ echo $? 0 $ test -n "" $ echo $? 1 Thanx in advance.. (2 Replies)
Discussion started by: divya bandipotu
2 Replies

12. Shell Programming and Scripting

Remove carriage return in a record

Hi all gurus, I need help in removing carriage return existed within a record delimited by pipe <|>. Sample: A_01|Test1|Testing1|Remarks1 A_02|Test2|Test ing2|Remarks2 A_03|Test3|Testing3| Remarks3 Desire output: A_01|Test1|Testing1|Remarks1 A_02|Test2|Testing2|Remarks2... (10 Replies)
Discussion started by: agathaeleanor
10 Replies