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

Testing freeware
Filter: All | Freeware | Demo
 

Testing

< 1 2 3 4 5 > 
Added: August 25, 2006 | Visits: 7.138

Video Card Stability Test Free Video Card Stress Testing! Free Benchmark the speed of your 3D graphics video card! Free 3D Screensaver!



Platforms: Windows

License: Freeware Size: 670 KB Download (912): Video Card Stability Test Download

Released: November 10, 2008  |  Added: February 23, 2009 | Visits: 1.122

cfix cfix is an xUnit testing framework for C/C++, fully specialized for Win32 (32/64 bit) development. cfix requires only little effort to author unit tests, which are compiled and linked into a DLL. The testrunner application provided by cfix allows selectively running tests of one or more of such...





Platforms: Windows

License: Freeware Size: 3.34 MB Download (123): cfix Download

Added: January 18, 2010 | Visits: 1.017

PITA::XML::Request PITA::XML::Request is a request for the testing of a software package. SYNOPSIS # Create a request specification my $dist = PITA::XML::Request->new( scheme => perl5, distname => PITA-XML, # The package to test file => PITA::XML::File->new( filename => Foo-Bar-0.01.tar.gz, digest =>...


Platforms: *nix

License: Freeware Size: 71.68 KB Download (96): PITA::XML::Request Download

Added: January 18, 2010 | Visits: 1.065

CATSRunner CATSRunner is a unit testing framework. C Automated Testing System (CATS) and its associated test runner (Catsrunner) implement a unit testing framework that provides developers of C-based systems, including embedded systems, the capability to use the popular test driven development approach....


Platforms: *nix

License: Freeware Size: 2.2 MB Download (95): CATSRunner Download

Added: September 07, 2010 | Visits: 1.375

Firewall Tester The Firewall Tester (FTester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS) capabilities.The tool consists of two perl scripts, a packet injector (ftest) and the listening sniffer (ftestd). The first script injects custom packets, defined in...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (99): Firewall Tester Download

Added: September 10, 2010 | Visits: 1.271

FTester FTester (The Firewall Tester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS) capabilities. The tool consists of two perl scripts, a packet injector (ftest) and the listening sniffer (ftestd). The first script injects custom packets, defined in...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (116): FTester Download

Added: March 02, 2010 | Visits: 4.693

Open Source Requirements Management Tool Open Source Requirements Management Tool is designed to achieve full SDLC traceability for features, requirements, design, implementation, and testing. Open Source Requirements Management Tool has a UI for requirements derivation, version control, and common or custom attributes (rationale,...


Platforms: *nix

License: Freeware Size: 145 MB Download (217): Open Source Requirements Management Tool Download

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: September 10, 2010 | Visits: 1.288

CppUnit - C++ port of JUnit CppUnit is a C++ unit testing framework. CppUnit project started its life as a port of JUnit to C++ by Michael Feathers..


Platforms: *nix

License: Freeware Size: 716.8 KB Download (179): CppUnit - C++ port of JUnit 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: August 01, 2010 | Visits: 1.613

Crucible Crucible provides a powerful, flexible backend for building automated testing systems. Crucible allows for conducting tests on multiple machines (via NFS), including patching, rebuilding, and booting new kernels, libraries, and services. Configuration and customization can be done through...


Platforms: *nix

License: Freeware Size: 79.87 KB Download (108): Crucible 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: 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: March 11, 2010 | Visits: 1.321

Nettion Nettion provides a network performance testing toolkit. Nettion (NETwork TestIng and Operational eNvironment) is a framework for developing, deploying, and executing network performance tests, designed particularly for mobile ad-hoc networks. It is distinguished by not using control...


Platforms: *nix

License: Freeware Size: 665.6 KB Download (109): Nettion Download

Added: January 17, 2010 | Visits: 914

Jameleon Jameleon project is an automated testing framework that can be used by technical and non-technical users alike. One of the main concepts behind it is to create a group of keywords or tags that represent different screens of an application. All of the logic required to automate each particular...


Platforms: *nix

License: Freeware Size: 3.8 MB Download (104): Jameleon Download

Added: May 23, 2010 | Visits: 808

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

Added: November 10, 2010 | Visits: 828

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 (97): Test::Unit::InnerClass Download

< 1 2 3 4 5 >