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.600.217 Times

Quick Typing Test freeware
Filter: All | Freeware | Demo
 

Quick Typing Test

< 1 2 3 4 5 
Added: April 27, 2010 | Visits: 5.798

Test::WWW::Simple Test::WWW::Simple is a Perl module to test Web applications using TAP. SYNOPSIS use Test::WWW::Simple; # This is the default user agent. user_agent(Windows IE 6); page_like("http://yahoo.com", qr/.../, "check for expected text"); page_unlike("http://my.yahoo.com", qr/.../, "check for...



Platforms: *nix

License: Freeware Size: 12.29 KB Download (92): Test::WWW::Simple Download

Added: September 11, 2010 | Visits: 795

Test::XML::Simple Test::XML::Simple is an easy testing for XML. SYNOPSIS use Test::XML::Simple tests=>5; xml_valid $xml, "Is valid XML"; xml_node $xml, "/xpath/expression", "specified xpath node is present"; xml_is, $xml, /xpath/expr, "expected value", "specified text present"; xml_like, $xml, /xpath/expr,...





Platforms: *nix

License: Freeware Size: 5.12 KB Download (86): Test::XML::Simple Download

Added: March 20, 2010 | Visits: 901

Test::YAML::Valid Test::YAML::Valid is a Perl module is a test for valid YAML. SYNOPSIS This module lets you easily test the validity of YAML: use Test::More tests => 3; use Test::YAML::Valid; yaml_string_ok(YAML::Dump({foo => bar}), YAML generates good YAML?); yaml_string_ok(this is not YAML, is it?,...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (90): Test::YAML::Valid Download

Added: January 03, 2010 | Visits: 893

Test::Usage Test::Usage is a different approach to testing: selective, quieter, colorful. SYNOPSIS Lets say we are building module Foo.pm. To exercise it, we write a usage examples module, Foo_T.pm, which may eventually look something like this: package Foo_T; use Test::Usage; use strict; use...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (88): Test::Usage Download

Added: May 18, 2010 | Visits: 1.142

Test::WWW::Selenium Test::WWW::Selenium is a Perl module to test applications using Selenium Remote Control. SYNOPSIS Test::WWW::Selenium is a subclass of WWW::Selenium that provides convenient testing functions. use Test::More tests => 5; use Test::WWW::Selenium; # Parameters are passed through to...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (93): Test::WWW::Selenium Download

Added: September 25, 2010 | Visits: 780

Test::MockDBI Test::MockDBI is Perl module mock DBI interface for testing. SYNOPSIS use Test::MockDBI; OR use Test::MockDBI qw( :all ); Test::MockDBI::set_dbi_test_type(42); if (Test::MockDBI::get_dbi_test_type() == 42) { ... $mock_dbi = get_instance Test::MockDBI; $mock_dbi->bad_method(...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (89): Test::MockDBI Download

Added: April 24, 2010 | Visits: 992

Test::Simple Test::Simple is a Perl module with basic utilities for writing tests. SYNOPSIS use Test::Simple tests => 1; ok( $foo eq $bar, foo is bar ); ** If you are unfamiliar with testing read Test::Tutorial first! ** This is an extremely simple, extremely basic module for writing tests suitable...


Platforms: *nix

License: Freeware Size: 77.82 KB Download (92): Test::Simple Download

Added: April 25, 2010 | Visits: 728

BFBTester BFBTester is great for doing quick, proactive, security checks of binary programs. BFBTester will perform checks for single and multiple argument command line overflows and environment variable overflows. Versions 2.0-BETA and higher can also watch for tempfile creation activity to alert the...


Platforms: *nix

License: Freeware Size: 70.66 KB Download (93): BFBTester Download

Added: August 07, 2010 | Visits: 736

Test::Glade Test::Glade is a simple way to test Gtk2::GladeXML-based apps. SYNOPSIS use Test::Glade tests => 2; my $glade_xml = interface.glade; has_widget( $glade_xml, { name => main_window, type => GtkWindow, properties => { title => Test Application, type => GTK_WINDOW_TOPLEVEL, resizable =>...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Test::Glade Download

Added: April 22, 2010 | Visits: 3.519

Quick.Cart Quick.Cart is a freeware and simple e-commerce solution designed for your own web shop administration. There is full administration for categories, products, contents, and orders.. Oferujemy darmowe skrypty: Quick.Cart (sklep internetowy), Quick.Cms (system zarzA…dzania treA›ciA…, CMS)...


Platforms: *nix

License: Freeware Download (182): Quick.Cart Download

Added: November 09, 2013 | Visits: 2.015

Typing Trainer Typing Trainer is an application suite that is directed towards students, from the novice to those who have the basic knowledge of the kebyoard finger layout, and want to train and exercise their expertese in typing. The design of the latter program, also allows for an environment where students...


Platforms: *nix

License: Freeware Size: 1.2 MB Download (313): Typing Trainer Download

Added: January 15, 2010 | Visits: 1.027

Quick Lounge Applet Quick Lounge applet is an applet for the GNOME Panel. Applets are little applications embedded in the Panel. With this applet you can organize your preferred applications in a single place. You can add spaces between applications, they can be used to group together applications with similar...


Platforms: *nix

License: Freeware Size: 593.92 KB Download (97): Quick Lounge Applet Download

Added: July 03, 2010 | Visits: 724

Test::TestCoverage Test::TestCoverage is Perl module to test if your test covers all public subroutines of the package. SYNOPSIS use Test::TestCoverage; test_coverage(My::Module); my $obj = My::Module->new(); $obj->foo(); $obj->bar(); # test will be ok, assumed that My::Module has the subroutines new,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (86): Test::TestCoverage Download

Added: May 10, 2010 | Visits: 805

classes::Test classes::Test are functions to help with classes pragma testing. SYNOPSIS can_new can_set_get has_decl has_class_const has_mixins has_mixins_hash is_classes MyClass; is_classes main; is_throwable X::Mine; is_classes_exc X::Mine; Generic tests based on Test::Builder designed to...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (93): classes::Test Download

Added: August 23, 2010 | Visits: 1.058

Test::Tech Test::Tech is a Perl module that adds skip_tests and test data structures capabilities to the "Test" module. SYNOPSIS ####### # Procedural (subroutine) Interface # # (use for &Test::plan, &Test::ok, &Test::skip drop in) # use Test::Tech qw(demo finish is_skip ok ok_sub plan skip skip_sub...


Platforms: *nix

License: Freeware Size: 93.18 KB Download (89): Test::Tech Download

Added: April 15, 2010 | Visits: 1.578

Test::STDmaker::Demo Test::STDmaker::Demo is a Perl module that generates demo scripts from a test description short hand. The Test::STDmaker::Demo package is an internal driver package to the Test::STDmaker package that supports the Test::STDmaker::tmake() method. Any changes to the internal drive interface and...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (126): Test::STDmaker::Demo Download

Added: August 23, 2010 | Visits: 723

Test::STDmaker::STD Test::STDmaker::STD is a Perl module that generates a STD POD from a test description short hand. The Test::STDmaker::STD package is an internal driver package to the Test::STDmaker package that supports the Test::STDmaker::tmake() method. Any changes to the internal drive interface and this...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (88): Test::STDmaker::STD Download

Added: November 07, 2010 | Visits: 1.214

Test::STDmaker Test::STDmaker is a Perl module to generate test scripts, demo scripts from a test description short hand. SYNOPSIS ####### # Procedural (subroutine) interface # use Test::STDmake qw(find_t_roots get_data perl_command); @t_path = find_t_paths() $date = get_date(); $myperl =...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (89): Test::STDmaker Download

Added: July 21, 2010 | Visits: 1.166

Test::STDmaker::Check Test::STDmaker::Check is a Perl module that checks a software test description short hand. The Test::STDmaker::Check package is an internal driver package to the Test::STDmaker package that supports the Test::STDmaker::tmake() method. Any changes to the internal drive interface and this package...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (87): Test::STDmaker::Check Download

Added: November 11, 2010 | Visits: 908

Test::STD::PerlSTD Test::STD::PerlSTD is a general Perl Software Test Description (STD). TITLE PAGE Gerneral Software Test Description (STD) for Perl Program Modules Revision: - Date: 2004/05/15 Prepared for: General Public Prepared by: http://www.SoftwareDiamonds.com support@SoftwareDiamonds.com...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (92): Test::STD::PerlSTD Download

< 1 2 3 4 5