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 50.044.845 Times

Typing Test Basic software
Filter: All | Freeware | Demo
 

Typing Test Basic

< 1 2 3 4 5 
Added: October 26, 2010 | Visits: 959

Test::Extreme Test::Extreme is a perlish unit testing framework. SYNOPSIS # In ModuleOne.pm combine unit tests with code package ModuleOne; use Test::Extreme; sub foo { return 23 }; sub test_foo { assert_equals foo, 23 } # at the end of the module run_tests ModuleOne if $0 =~ /ModuleOne.pm$/; #...



Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Test::Extreme Download

Added: July 15, 2010 | Visits: 916

Test::use::ok Test::use::ok is an alternative to Test::More::use_ok. SYNOPSIS use ok( Some::Module ); According to the Test::More documentation, it is recommended to run use_ok() inside a BEGIN block, so functions are exported at compile-time and prototypes are properly honored. That is, instead of...





Platforms: *nix

License: Freeware Size: 13.31 KB Download (88): Test::use::ok Download

Added: October 23, 2010 | Visits: 1.000

Test::Differences Test::Differences Perl module contains test strings and data structures and show differences if not ok. SYNOPSIS use Test; ## Or use Test::More use Test::Differences; eq_or_diff $got, "anbncn", "testing strings"; eq_or_diff @got, [qw( a b c )], "testing arrays"; ## Passing options:...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Test::Differences Download

Added: May 03, 2010 | Visits: 2.342

Blackjack basic strategy calculator Blackjack basic strategy calculator project is a Monte Carlo basic strategy calculator. bsc finds the Blackjack strategy through the Monte Carlo method. It analyzes each situation with adaptive depth, and is generally optimized for speed. The rules are hard coded for the authors local...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (226): Blackjack basic strategy calculator Download

Added: November 26, 2010 | Visits: 828

Test::TempDatabase Test::TempDatabase is a Perl module for temporary database creation and destruction. SYNOPSIS use Test::TempDatabase; my $td = Test::TempDatabase->create(dbname => temp_db); my $dbh = $td->handle; ... some tests ... # Test::TempDatabase drops database This module automates creation...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (100): Test::TempDatabase Download

Added: May 24, 2010 | Visits: 891

Test::URI Test::URI is a Perl module that can check Uniform Resource Identifiers (URIs). SYNOPSIS use Test::More tests => 5; use Test::URI; # http://www.example.com:8080/index.html#name uri_scheme_ok( $uri, http ); uri_host_ok( $uri, www.example.com ); uri_port_ok( $uri, 8080 ); uri_path_ok(...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (100): Test::URI Download

Added: January 20, 2010 | Visits: 1.017

Test::Manifest Test::Manifest is a Perl module created to interact with a t/test_manifest file. SYNOPSIS # in Makefile.PL eval "use Test::Manifest"; # in the file t/test_manifest, list the tests you want # to run Test::Harness assumes that you want to run all of the .t files in the t/ directory in...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (100): Test::Manifest Download

Added: May 19, 2010 | Visits: 1.207

Test::ISBN Test::ISBN is a Perl module to check international standard book numbers. SYNOPSIS use Test::More tests => 1; use Test::ISBN; isbn_ok( $isbn ); Functions isbn_ok( STRING ) Ok is the STRING is a valid ISBN, in any format that Business::ISBN accepts. This function only checks the...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (122): Test::ISBN Download

Added: April 15, 2010 | Visits: 1.199

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.569

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 (93): Test::WWW::Accessibility Download

Added: April 26, 2010 | Visits: 1.009

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 (92): Test::Chunks Download

Added: March 04, 2010 | Visits: 889

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 (95): Test-Parser Download

Added: May 17, 2010 | Visits: 912

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.128

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.099

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.160

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.089

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 (93): Test::Unit::TestRunner Download

Added: February 07, 2010 | Visits: 1.074

Test::Unit::TestCase Test::Unit::TestCase is a unit testing framework base class. SYNOPSIS package FooBar; use base qw(Test::Unit::TestCase); sub new { my $self = shift()->SUPER::new(@_); # your state for fixture here return $self; } sub set_up { # provide fixture } sub tear_down { # clean up after...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (88): Test::Unit::TestCase Download

Added: September 07, 2010 | Visits: 1.206

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 (100): Test::Unit::Runner::Terminal Download

Added: November 20, 2010 | Visits: 1.660

CGI::WeT::Modules::Basic CGI::WeT::Modules::Basic is a basic rendering engine extensions. SYNOPSIS use CGI::WeT::Modules::Basic (); This module provides basic rendering constructs for the engine. Please be aware that the code supersedes the documentation. While I have tried to be accurate there are times that words...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (98): CGI::WeT::Modules::Basic Download

< 1 2 3 4 5