Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 49.595.277 Times

Gibson Research Shields Up Test freeware
Filter: All | Freeware | Demo
 

Gibson Research Shields Up Test

< 1 2 3 4 5 > 
Added: April 15, 2010 | Visits: 1.196

Test::Data Test::Data is a Perl module to test functions for particular variable types. SYNOPSIS use Test::Data qw(Scalar Array Hash Function); Test::Data provides utility functions to check properties and values of data and variables. Functions Plug-in modules define functions for each data type....



Platforms: *nix

License: Freeware Size: 8.19 KB Download (96): Test::Data Download

Added: January 05, 2010 | Visits: 1.563

Test::WWW::Accessibility Test::WWW::Accessibility is a Perl module to test web pages for accessibility..





Platforms: *nix

License: Freeware Size: 15.36 KB Download (92): Test::WWW::Accessibility Download

Added: April 26, 2010 | Visits: 1.004

Test::Chunks Test::Chunks is a Data Driven Testing Framework. NOTE - This module has been deprecated and replaced by Test::Base. This is basically just a renaming of the module. Test::Chunks was not the best name for this module. Please discontinue using Test::Chunks and switch to Test::Base. Helpful Hint:...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (86): Test::Chunks Download

Added: March 04, 2010 | Visits: 884

Test-Parser Test::Parser is a collection of parsers for different test output file formats. These parse the data into a general purpose data structure that can then be used to create reports, do post-processing analysis, etc. Test-Parser can also export tests in SpikeSources TRPI test description XML...


Platforms: *nix

License: Freeware Size: 54.27 KB Download (94): Test-Parser Download

Added: May 17, 2010 | Visits: 900

Test::Parser Test::Parser is a collection of parsers for different test output file formats. These parse the data into a general purpose data structure that can then be used to create reports, do post-processing analysis, etc. Test::Parser can also export tests in SpikeSources TRPI test description XML...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (91): Test::Parser Download

Added: April 20, 2010 | Visits: 1.125

Test::Unit::tests::AllTests Test::Unit::tests::AllTests is a unit testing framework self tests. SYNOPSIS # command line style use perl TestRunner.pl Test::Unit::tests::AllTests # GUI style use perl TkTestRunner.pl Test::Unit::tests::AllTests This class is used by the unit testing framework to encapsulate all the...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (92): Test::Unit::tests::AllTests Download

Added: June 07, 2010 | Visits: 2.094

Test::Unit::Tutorial Test::Unit::Tutorial is a Perl module that contains a tutorial on unit testing. SYNOPSIS perldoc Test::Unit::Tutorial Here should be extensive documentation on what unit testing is, why it is useful, and how to do it with the Test::Unit collection of modules. Sorry for not implementing...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (243): Test::Unit::Tutorial Download

Added: September 09, 2010 | Visits: 1.157

Test::Unit::TestSuite Test::Unit::TestSuite is a unit testing framework base class. SYNOPSIS use Test::Unit::TestSuite; # more code here ... sub suite { my $class = shift; # create an empty suite my $suite = Test::Unit::TestSuite->empty_new("A Test Suite"); # get and add an existing suite...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (152): Test::Unit::TestSuite Download

Added: January 13, 2010 | Visits: 1.086

Test::Unit::TestRunner Test::Unit::TestRunner is a unit testing framework helper class. SYNOPSIS use Test::Unit::TestRunner; my $testrunner = Test::Unit::TestRunner->new(); $testrunner->start($my_testcase_class); This class is the test runner for the command line style use of the testing framework. It is...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (87): Test::Unit::TestRunner Download

Added: September 07, 2010 | Visits: 1.202

Test::Unit::Runner::Terminal Test::Unit::Runner::Terminal is a unit testing framework helper class. SYNOPSIS use Test::Unit::Runner::Terminal; my $testrunner = Test::Unit::Runner::Terminal->new(); $testrunner->start($my_test_class); This class is a test runner for the command line style use of the testing framework....


Platforms: *nix

License: Freeware Size: 75.78 KB Download (94): Test::Unit::Runner::Terminal Download

Added: May 23, 2010 | Visits: 800

Test::Unit::Procedural Test::Unit::Procedural Perl module contains a procedural style unit testing interface. SYNOPSIS use Test::Unit::Procedural; # your code to be tested goes here sub foo { return 23 }; sub bar { return 42 }; # define tests sub test_foo { assert(foo() == 23, "Your message here"); } sub...


Platforms: *nix

License: Freeware Size: 75.78 KB Download (89): Test::Unit::Procedural Download

Added: November 10, 2010 | Visits: 826

Test::Unit::InnerClass Test::Unit::InnerClass is a unit testing framework helper class. SYNOPSIS This class is not intended to be used directly This class is used by the framework to emulate the anonymous inner classes feature of Java. It is much easier to port Java to Perl using this class..


Platforms: *nix

License: Freeware Size: 45.06 KB Download (91): Test::Unit::InnerClass Download

Added: March 04, 2010 | Visits: 1.573

PSA::Test::Builder PSA::Test::Builder is a backend for building test libraries. SYNOPSIS package My::Test::Module; use PSA::Test::Builder; require Exporter; @ISA = qw(Exporter); @EXPORT = qw(ok); my $Test = Test::Builder->new; $Test->output(my_logfile); sub import { my($self) = shift; my $pack =...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (150): PSA::Test::Builder Download

Added: January 02, 2010 | Visits: 1.022

Test-AutoBuild Test-AutoBuild is a framework for performing continuous, unattended, automated software builds. Test-AutoBuild pulls code from source control repositories (CVS, Perforce, and GNU Arch are currently supported), calculates inter-module dependencies, builds each module, and then generates HTML...


Platforms: *nix

License: Freeware Size: 204.8 KB Download (92): Test-AutoBuild Download

Added: May 01, 2010 | Visits: 823

Test::AutoBuild::Runtime Test::AutoBuild::Runtime is a Perl module with builder runtime state. SYNOPSIS use Test::AutoBuild::Runtime; my $runtime = new Test::AutoBuild::Runtime (archive_manager => $archive_manager, monitors => %monitors, repositories => %repositories, modules => %modules, package_types =>...


Platforms: *nix

License: Freeware Size: 204.8 KB Download (117): Test::AutoBuild::Runtime Download

Added: March 16, 2010 | Visits: 1.240

Test::Number::Delta Test::Number::Delta is a Perl module to compare the difference between numbers against a given tolerance. SYNOPSIS # Import test functions use Test::Number::Delta; # Equality test with default tolerance delta_ok( 1e-5, 2e-5, values within 1e-6); # Inequality test with default tolerance...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Test::Number::Delta Download

Added: April 05, 2010 | Visits: 937

Test::Deep Test::Deep is a Perl module for extremely flexible deep comparison. SYNOPSIS use Test::More tests => $Num_Tests; use Test::Deep; cmp_deeply( $actual_horrible_nested_data_structure, $expected_horrible_nested_data_structure, "got the right horrible nested data structure" ); cmp_deeply(...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): Test::Deep Download

Added: October 23, 2010 | Visits: 1.182

Test::Tester::CaptureRunner Test::Tester::CaptureRunner is a Perl module that provides help testing test modules built with Test::Builder. SYNOPSIS use Test::Tester tests => 6; use Test::MyStyle; check_test( sub { is_mystyle_eq("this", "that", "not eq"); }, { ok => 0, # expect this to fail name => "not eq",...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): Test::Tester::CaptureRunner Download

Added: July 16, 2010 | Visits: 1.391

Test::Tester::Capture Test::Tester::Capture is a help testing test modules built with Test::Builder. This is a subclass of Test::Builder that overrides many of the methods so that they dont output anything. It also keeps track of its own set of test results so that you can use Test::Builder based modules to...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (99): Test::Tester::Capture Download

Added: October 14, 2010 | Visits: 892

Test::XML::XPath Test::XML::XPath is a Perl module to test XPath assertions. SYNOPSIS use Test::XML::XPath tests => 3; like_xpath( , /foo ); # PASS like_xpath( , /bar ); # FAIL unlike_xpath( , /bar ); # PASS is_xpath( bar , /foo, bar ); # PASS is_xpath( bar , /bar, foo ); # FAIL # More...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (88): Test::XML::XPath Download

< 1 2 3 4 5 >