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

Test Toolkit freeware
Filter: All | Freeware | Demo
 

Test Toolkit

1 2 3 4 5 > 
Released: August 23, 2012  |  Added: August 23, 2012 | Visits: 897

Adobe PDF Test Toolkit Adobe PDF Test Toolkit enables enterprise customers to automate the testing of the Acrobat products, particularly when used with LiveCycle and SAP. The initial focus is to enable LiveCycle and SAP users to leverage HP's Quick Test Pro automation capabilities to automate the testing of form... Platforms: Windows, Windows Vista, 7

License: Freeware Download (55): Adobe PDF Test Toolkit Download

Added: October 02, 2010 | Visits: 1.411

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 (112): Test Environment Toolkit Download

Added: January 08, 2006 | Visits: 7.431

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

Added: October 01, 2010 | Visits: 1.103

Globus Toolkit Globus Toolkit is an open source software toolkit used for building grids. It is being developed by the Globus Alliance and many others all over the world. A growing number of projects and companies are using the Globus Toolkit to unlock the potential of grids for their cause. The open source... Platforms: *nix

License: Freeware Download (112): Globus Toolkit Download

Added: January 08, 2010 | Visits: 923

Test::Unit::GTestRunner Test::Unit::GTestRunner is a Unit testing framework helper class SYNOPSIS use Test::Unit::GTestRunner; Test::Unit::GTestRunner->new->start ($my_testcase_class); Test::Unit::GTestRunner::main ($my_testcase_class); If you just want to run a unit test (suite), try it like this:... Platforms: *nix

License: Freeware Size: 63.49 KB Download (89): Test::Unit::GTestRunner Download

Released: September 27, 2012  |  Added: September 27, 2012 | Visits: 824

Visualization Toolkit (VTK) The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. Kitware, whose team created and... Platforms: Windows, Mac, Linux

License: Freeware Size: 10 MB Download (54): Visualization Toolkit (VTK) Download

Released: October 10, 2012  |  Added: October 10, 2012 | Visits: 976

Flash Development Toolkit Renesas Flash Development Toolkit is the dedicated flash programming software for Renesas flash microcomputers, which offers sophisticated and easy-to-use Graphical User Interface. Moreover, when it is used with High-performance Embedded Workshop, it allows the users who involved in development... Platforms: Windows

License: Freeware Download (114): Flash Development Toolkit Download

Added: June 20, 2013 | Visits: 519

Python Cryptography Toolkit Python Cryptography Toolkit is a collection of both secure hash functions (such as MD5 and SHA), and various encryption algorithms. The package is structured to make adding new modules easy. I consider this section to be essentially complete, and the software interface will almost certainly not... Platforms: *nix

License: Freeware Size: 153.6 KB Download (46): Python Cryptography Toolkit Download

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

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: October 12, 2010 | Visits: 1.807

PDF Toolkit PDF Toolkit is a simple servicemenu for PDF files.. PDF Toolkit service menu KDE-Apps.org Community Portal for KDE Applications Software Office Multimedia Graphic Network Printing Education Games Development Administration Scientific Security Utilities Screensaver News Forum GUI Polls Links... Platforms: *nix

License: Freeware Size: 512 KB Download (174): PDF Toolkit Download

Added: January 18, 2010 | Visits: 1.443

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

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

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

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

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 06, 2010 | Visits: 1.514

Simply Powerful ToolKit Simply Powerful ToolKit in short SPTK is a powerful widget toolkit based on the Fast and Light ToolKit (FLTK). The goal of this library is to create the easy-to-use, compact and effective library of controls to extend the abilities of FLTK library. It is geared for business-style application... Platforms: *nix

License: Freeware Size: 3.5 MB Download (101): Simply Powerful ToolKit Download

Added: October 19, 2010 | Visits: 1.561

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: January 02, 2010 | Visits: 1.147

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

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

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

1 2 3 4 5 >