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

Pearson Vue Test Center freeware
Filter: All | Freeware | Demo
 

Pearson Vue Test Center

< 1 2 3 4 5 > 
Added: July 16, 2010 | Visits: 1.407

Test::Tester::Capture Test::Tester::Capture is a help testing test modules built with Test::Builder. This is a subclass of Test::Builder that overrides many of the methods so that they dont output anything. It also keeps track of its own set of test results so that you can use Test::Builder based modules to... Platforms: *nix

License: Freeware Size: 14.34 KB Download (105): Test::Tester::Capture Download

Added: July 05, 2010 | Visits: 838

Test::MultiFork Test::MultiFork is a test suite that has support for multi-process programs. SYNOPSIS use Test::MultiFork; ($name, $letter, $number) = procname([new name]) lockcommon() @oldvalues = getcommon() setcommon(@newvalues) unlockcommon() use Test::MultiFork qw(groupwait setgroup dofork... Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): Test::MultiFork Download

Added: October 14, 2010 | Visits: 903

Test::XML::XPath Test::XML::XPath is a Perl module to test XPath assertions. SYNOPSIS use Test::XML::XPath tests => 3; like_xpath( , /foo ); # PASS like_xpath( , /bar ); # FAIL unlike_xpath( , /bar ); # PASS is_xpath( bar , /foo, bar ); # PASS is_xpath( bar , /bar, foo ); # FAIL # More... Platforms: *nix

License: Freeware Size: 9.22 KB Download (89): Test::XML::XPath 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: August 13, 2010 | Visits: 1.502

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);... Platforms: *nix

License: Freeware Size: 3.07 KB Download (104): Test::File::Find::Rule 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: February 12, 2010 | Visits: 1.167

Test::Reporter::Date::Format Test::Reporter::Date::Format Perl module contains date formating subroutines. SYNOPSIS use Test::Reporter::Date::Format; @lt = localtime(time); print time2str($template, time); print strftime($template, @lt); print time2str($template, time, $zone); print strftime($template, @lt,... Platforms: *nix

License: Freeware Size: 23.55 KB Download (107): Test::Reporter::Date::Format 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

Added: May 10, 2013 | Visits: 1.400

Help Center Live Help Center Live is dedicated to making available the tools to help you serve your customers and visitors. The Help Center Live Community produces Help Center Live free of charge. All we ask for is your ideas and comments.Modules" are expansions of the core being of HCL. These build on the solid... Platforms: Windows, *nix, PHP, BSD Solaris

License: Freeware Download (104): Help Center Live Download

Added: May 18, 2010 | Visits: 1.532

Test::Signature Test::Signature is a Perl module to automate SIGNATURE testing. SYNOPSIS # This is actually the t/00signature.t # file from this distribution. use Test::More tests => 1; use Test::Signature; signature_ok(); ABSTRACT Test::Signature verifies that the Module::Signature generated... Platforms: *nix

License: Freeware Size: 16.38 KB Download (197): Test::Signature Download

Added: January 27, 2010 | Visits: 678

Test::MockClass Test::MockClass is a Perl module to provide mock classes and mock objects for testing. SYNOPSIS # Pass in the class name and version that you want to mock use Test::MockClass qw{ClassToMock 1.1}; # create a MockClass object to handle a specific class my $mockClass =... Platforms: *nix

License: Freeware Size: 14.34 KB Download (106): Test::MockClass Download

Added: October 16, 2010 | Visits: 787

Test::Dependencies Test::Dependencies is a Perl module to ensure that your Makefile.PL specifies all module dependencies. SYNOPSIS In your t/00-dependencies.t: use Test::Dependencies exclude => [qw/ Your::Namespace Some::Other::Namespace /]; ok_dependencies(); Makes sure that all of the modules that are... Platforms: *nix

License: Freeware Size: 21.5 KB Download (89): Test::Dependencies Download

Added: March 05, 2010 | Visits: 1.119

Test::Tail::Multi Test::Tail::Multi is a Perl module to execute code, monitor dynamic file contents. SYNOPSIS use Test::Tail::Multi files => [qw(file1 file2)] tests=>2; # Can add files dynamically as well add_file(file3, "decided to add file3 too"); # Execute a command and check against output... Platforms: *nix

License: Freeware Size: 5.12 KB Download (107): Test::Tail::Multi Download

Added: April 27, 2010 | Visits: 5.809

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

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 (92): Test::XML::Simple Download

Added: April 13, 2010 | Visits: 1.237

Gnome Control Center Gnome Control Center is GNOMEs main interface for configuration of various aspects of your desktop. Whats New in This Release: about-me: - Add a tooltip to the image button to make it accessible (Jens Granseuer) appearance: - Add option to add wallpapers via the command line (Jens... Platforms: *nix

License: Freeware Size: 3.3 MB Download (99): Gnome Control Center Download

Added: May 20, 2010 | Visits: 1.583

control-center control-center package is a Gnome system control center. Whats New in This Release: - configure.in: updated for 2.18.1. - configure.in: build libslab statically, to avoid conflicts with gnome-main-menu, which installs its .so and header files.. Platforms: *nix

License: Freeware Size: 3.4 MB Download (171): control-center Download

Added: March 20, 2010 | Visits: 911

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

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

Added: May 18, 2010 | Visits: 1.153

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

< 1 2 3 4 5 >