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

What Is A Pku Test software
Filter: All | Freeware | Demo
 

What Is A Pku Test

< 1 2 3 4 5 
Added: August 23, 2008 | Visits: 1.526

MB Japanese Animal Personality Test MB Japanese Animal Personality Test is a fun game and tells you more about what is precious to you. This test hopes to make you understand how you gauge the different values of life. This test is based on the Japanese Animal Archetypes. The test comprises of answering a set of questions based... Platforms: Windows

License: Freeware Size: 592 KB Download (515): MB Japanese Animal Personality Test 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 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: June 07, 2010 | Visits: 2.110

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: April 05, 2010 | Visits: 949

Test::Deep Test::Deep is a Perl module for extremely flexible deep comparison. SYNOPSIS use Test::More tests => $Num_Tests; use Test::Deep; cmp_deeply( $actual_horrible_nested_data_structure, $expected_horrible_nested_data_structure, "got the right horrible nested data structure" ); cmp_deeply(... Platforms: *nix

License: Freeware Size: 30.72 KB Download (103): Test::Deep Download

Added: July 26, 2010 | Visits: 1.117

Test::Fixme Test::Fixme is a Perl module to check code for FIXMEs. SYNOPSIS # In a test script like t/test-fixme.t use Test::Fixme; run_tests(); # You can also tailor the behaviour. use Test::Fixme; run_tests( where => lib, # where to find files to check match => TODO, # what to check for... Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Test::Fixme Download

Added: June 25, 2010 | Visits: 2.131

LINGOT Is Not a Guitar-Only Tuner LINGOT is a musical instrument tuner. LINGOT is easy to use, accurate, and highly configurable. Originally conceived to tune electric guitars, its configurability gives it a more general character. (Tuning another instruments has not been tested). It looks like an analogic tuner, with a gauge... Platforms: *nix

License: Freeware Size: 450.56 KB Download (276): LINGOT Is Not a Guitar-Only Tuner Download

Added: October 25, 2010 | Visits: 947

Bundle::Test Bundle::Test is a set of modules for software and hardware testing using Perl. SYNOPSIS A bundle does not have code in it. It is only a list of related modules. It exists only to make it easier to install these modules with one command: perl -MCPAN -e install Bundle::Test This bundle,... Platforms: *nix

License: Freeware Size: 6.14 KB Download (99): Bundle::Test Download

Added: April 24, 2010 | Visits: 1.003

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: November 07, 2010 | Visits: 1.229

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

Added: November 19, 2010 | Visits: 852

Test::Cmd Test::Cmd is a Perl module for portable testing of commands and scripts. SYNOPSIS use Test::Cmd; $test = Test::Cmd->new(prog => program_or_script_to_test, interpreter => script_interpreter, string => identifier_string, workdir => , subdir => dir, match_sub => $code_ref, verbose => 1);... Platforms: *nix

License: Freeware Size: 30.72 KB Download (109): Test::Cmd Download

Added: April 26, 2010 | Visits: 873

Test::LectroTest::Property Test::LectroTest::Property is a Perl module with properties that make testable claims about your software. SYNOPSIS use MyModule; # provides my_function_to_test use Test::LectroTest::Generator qw( :common ); use Test::LectroTest::Property qw( Test ); use Test::LectroTest::TestRunner; my... Platforms: *nix

License: Freeware Size: 54.27 KB Download (87): Test::LectroTest::Property Download

Added: February 04, 2010 | Visits: 837

Test::C2FIT Test::C2FIT is a direct Perl port of Ward Cunninghams FIT acceptance test framework for Java. SYNOPSIS FileRunner.pl input_containing_fit_tests.html test_results.html perl -MTest::C2FIT -e file_runner input_containing_fit_tests.html test_results.html perl -MTest::C2FIT -e fit_shell... Platforms: *nix

License: Freeware Size: 266.24 KB Download (90): Test::C2FIT Download

Added: March 02, 2010 | Visits: 621

Test::CPANpm Test::CPANpm is a Perl module to test a distributions interaction with CPAN before uploading. SYNOPSIS use Test::CPANpm; use Test::More qw(no_plan); cpan_depends_ok( [CGI, Module::Build, Acme::Wabbit], got the right dependancies ); cpan_depends_ok_force_missing(... Platforms: *nix

License: Freeware Size: 8.19 KB Download (89): Test::CPANpm Download

Added: August 12, 2010 | Visits: 1.011

Test::Pod::Snippets Test::Pod::Snippets is a Perl module to generate tests from pod code snippets. SYNOPSIS use Test::Pod::Snippets; my $tps = Test::Pod::Snippets->new(); $tps->generate_snippets( @pm_and_pod_files ); Fact 1 In a perfect world, a modules full API should be covered by an extensive battery... Platforms: *nix

License: Freeware Size: 6.14 KB Download (91): Test::Pod::Snippets Download

Released: October 13, 2012  |  Added: October 13, 2012 | Visits: 492

Aristotle Virtuousness Test for Mac OS This program is a simple 11 step test which determines how much virtuous you are according to Aristotle*. (*It's the world known Ancient Greek Philosopher, Plato's student.) This test should be done by someone who knows you very well. (E.g.: Family, partner, friend..) Dont do it yourself! After... Platforms: Mac

License: Freeware Size: 1.8 MB Download (492): Aristotle Virtuousness Test for Mac OS Download

Released: September 13, 2012  |  Added: September 13, 2012 | Visits: 753

MB Brain Test MB Free Brain Test is a simple brain dominance test. This quiz gives a basic idea about which hemisphere of the brain is more dominant, the right or the left or both are being equally used. Both the right brain and the left brain, have a defined set of functions which they perform independent of... Platforms: Windows

License: Freeware Size: 1.1 MB Download (543): MB Brain Test Download

Added: March 10, 2006 | Visits: 6.218

Test Plan Control Test Plan Control is a tool that you can use to help organize, manage, and archive the testing of software. This tool is targeted to help your entire software development team with the testing process. Test Plan Control is targeted towards beginning to small software development organizations....

License: Shareware Cost: $49.00 USD Size: 7 KB Download (485): Test Plan Control Download

Released: May 23, 2012  |  Added: June 23, 2012 | Visits: 3.287

Test Constructor Test constructor is a universal program for testing knowledge. The program can be used to perform testing both at home and various educational institutions. The program allows using an unlimited number of topics, questions and answers. Test constructor supports five types of questions, which... Platforms: Windows

License: Shareware Cost: $29.95 USD Size: 8.45 MB Download (175): Test Constructor Download

< 1 2 3 4 5