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

Multithreaded Upload Test freeware
Filter: All | Freeware | Demo
 

Multithreaded Upload Test

1 2 3 4 5 > 
Released: September 24, 2012  |  Added: September 24, 2012 | Visits: 1.558

Speed Test The Ultimate Speed Test: - Speed Test (Actual Maximum speed) - Monitor Upload/Download transfer - Ping Testing - Website Downtime/Error monitoring - Website response time, connection time and bandwidth - QOS - WIFI Signal strength - LAN/WAN/Home network bandwidth testing - CPU Usage - Memory...



Platforms: Windows

License: Freeware Size: 4.91 MB Download (176): Speed Test Download

Added: August 10, 2008 | Visits: 3.188

Internet Speed Test This program will test both download and upload bandwidth. Internet Speed Test is completely free and can be used for either personal or commercial use for testing the download speed of any Internet connection. The code is also available so that you can add this speed test to your blog, myspace...





Platforms: Any Browser

License: Freeware Download (307): Internet Speed Test Download

Released: December 04, 2012  |  Added: December 04, 2012 | Visits: 904

HTTP Test Tool HTTP Test Tool is a script based tool for testing and benchmarking web applications, web servers, proxy servers and web browsers. httest can emulate clients and servers even in the same test script. Emulating servers is a unique feature, very usefull for testing proxy servers, web browsers and...


Platforms: Windows

License: Freeware Size: 1013.76 KB Download (54): HTTP Test Tool Download

Added: May 26, 2013 | Visits: 383

DNSSEC Test This is a simple plugin for WordPress to test if the visitors ISP supports DNSSEC. The result is displayd in a widget. This plugin is totally relying on the code from Loopia AB, http://www.loopia.se. For more information (in Swedish) see...


Platforms: PHP

License: Freeware Size: 10 KB Download (41): DNSSEC Test Download

Added: January 08, 2006 | Visits: 7.423

Web page test automation toolkit Web page test automation tool. Fully written in Javascript and HTML set of tools, that fully simulate user walking through your pages. Allows you to set form fields, Verify value, position and related html source for specified text, handle alert and confirms, test new browser windows opened from...


Platforms: Windows, Windows CE

License: Freeware Size: 13 KB Download (561): Web page test automation toolkit Download

Released: May 25, 2009  |  Added: July 13, 2009 | Visits: 2.785

Zeta Test Zeta Test is an integrated test management environment that enables you to perform black-box tests, white-box tests, regression tests or change management tests of software applications. Zeta Test helps you to plan, perform, log, monitor and document the tests, and then to evaluate the test...


Platforms: Windows

License: Freeware Size: 61.14 MB Download (201): Zeta Test Download

Added: January 18, 2010 | Visits: 1.437

Test::Smoke::Patcher Test::Smoke::Patcher is a OO interface to help patching the source-tree. SYNOPSIS use Test::Smoke::Patcher; my $patcher = Test::Smoke::Patcher->new( single => { ddir => $build_dir, pfile => $patch, popts => -p1, v => 1, # 0..2 }); $patcher->patch; or my $patcher =...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (110): Test::Smoke::Patcher Download

Added: January 18, 2010 | Visits: 1.144

Test::Stochastic Test::Stochastic is a Perl module to check probabilities of randomized methods. SYNOPSIS use Test::Stochastic qw(stochastic_ok); stochastic_ok sub { ...random sub...}, {a => 0.4, b => 0.6}; stochastic_ok {a => 0.4, b => 0.6}, sub { ...random sub...}; Test::Stochastic::setup(times => 100,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Test::Stochastic Download

Added: January 18, 2010 | Visits: 1.409

Acme::Test::Weather Acme::Test::Weather is a Perl module to test the weather conditions for a user. SYNOPSIS use Test::Weather; plan tests => 2; # You may only install something # when its nice outside. &isnt_snowing(); &isnt_cloudy(); # output: 1..2 ok 1 - its partly cloudy in Montreal, Canada not...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (106): Acme::Test::Weather Download

Added: January 18, 2010 | Visits: 1.174

Test::Exception Test::Exception is a Perl module to test exception based code. SYNOPSIS use Test::More tests => 5; use Test::Exception; # or if you dont need Test::More use Test::Exception tests => 5; # then... # Check that something died dies_ok { $foo->method1 } expecting to die; # Check that...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (97): Test::Exception Download

Added: January 18, 2010 | Visits: 1.013

Test::Resub Test::Resub is a lexically scoped subroutine replacement for testing. SYNOPSIS #!/usr/bin/perl use Test::More tests => 4; use Test::Resub qw(resub); { package Somewhere; sub show { my ($class, $message) = @_; return "$class, $message"; } } # sanity is( Somewhere->show(beyond the...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): Test::Resub Download

Added: October 19, 2010 | Visits: 1.556

Test::Unit::Runner::XML Test::Unit::Runner::XML is a Perl module that can generate XML reports from unit test results. SYNOPSIS use Test::Unit::Runner::XML; mkdir("test_reports"); my $runner = Test::Unit::Runner::XML->new("test-reports"); $runner->start($test); exit(!$runner->all_tests_passed());...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (111): Test::Unit::Runner::XML Download

Added: October 02, 2010 | Visits: 1.404

Test Environment Toolkit Test Environment Toolkit in short TET, is a multi-platform uniform test scaffold, into which non-distributed and distributed test suites can be incorporated. TET supports tests written in C, C++, Perl, Tcl, Shell (sh, bash, and POSIX shell), Python, Ruby, and Korn Shell. Installation:...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (106): Test Environment Toolkit Download

Added: January 02, 2010 | Visits: 1.142

Test::Version Test::Version is a Perl module that has the role to check for VERSION information in modules. SYNOPSIS use Test::Version; plan tests => $num_tests; version_ok( $file ); FUNCTIONS version_ok( FILENAME, [EXPECTED, [NAME] ] ) version_ok requires a filename and returns one of the three...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): Test::Version Download

Added: October 26, 2010 | Visits: 960

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: 919

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 (94): Test::use::ok Download

Added: October 23, 2010 | Visits: 1.001

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: November 26, 2010 | Visits: 833

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: 892

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

1 2 3 4 5 >