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

Common Admission Test software
Filter: All | Freeware | Demo
 

Common Admission Test

< 1 2 3 4 5 > 
Added: October 14, 2010 | Visits: 897

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 (88): Test::XML::XPath Download

Added: April 13, 2010 | Visits: 1.091

Regexp::Common::time Regexp::Common::time Perl module contains date and time regexps. SYNOPSIS use Regexp::Common qw(time); # Piecemeal, Time::Format-like patterns $RE{time}{tf}{-pat => pattern} # Piecemeal, strftime-like patterns $RE{time}{strftime}{-pat => pattern} # Match ISO8601-style date/time...





Platforms: *nix

License: Freeware Size: 35.84 KB Download (88): Regexp::Common::time Download

Added: October 08, 2010 | Visits: 1.014

CMU Common Lisp CMU Common Lisp is a free implementation of the Common Lisp programming language which runs on most major Unix platforms. CMU Common Lisp project mainly conforms to the ANSI Common Lisp standard.. CMUCL is a high-performance, freeCommon Lisp implementation.


Platforms: *nix

License: Freeware Size: 3.44 MB Download (145): CMU Common Lisp Download

Added: August 13, 2010 | Visits: 1.494

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 (103): Test::File::Find::Rule Download

Added: October 25, 2010 | Visits: 940

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: July 31, 2013 | Visits: 1.564

Smart Common Input Method platform The Smart Common Input Method platform (SCIM), is an input method platform supporting more than thirty languages (CJK and many European languages) for POSIX-style operating systems including Linux and BSD.


Platforms: *nix

License: Freeware Size: 1.3 MB Download (111): Smart Common Input Method platform Download

Added: February 12, 2010 | Visits: 1.158

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

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 18, 2010 | Visits: 1.527

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

Common Text Transformation Library Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. Common Text Transformation Library implementation is based on STL classes and algorithms. Concept of a substring plays major role in design of the text transformation...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (100): Common Text Transformation Library Download

Added: January 27, 2010 | Visits: 672

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

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

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

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

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

Added: March 17, 2010 | Visits: 1.371

Ubuntu Common Hooker Ubuntu Common Hooker project aims to provide an interface for unknown file extensions to automatically install a certain packages when its called. Use cases Eduard is a schizophrenic, however his only obession and a way to calm him down is listening to "Veronika Plays Piano, volume 1" which...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (116): Ubuntu Common Hooker Download

Added: July 13, 2010 | Visits: 1.017

Common Media Input Layer 0.91 Common Media Input Layer (CMIL) is an C++ OO framework designed to improve the state of cross-platform input handling in games and other similar applications. CMIL was created out of the belief that the methods used in most media APIs perform input handling in a confusing, difficult, inflexible...


Platforms: *nix

License: Freeware Size: 89.09 KB Download (97): Common Media Input Layer 0.91 Download

Added: March 20, 2010 | Visits: 907

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: August 25, 2010 | Visits: 1.002

Common Lisp Kanji Drill Common Lisp Kanji Drill, or CLKD in short, is a newly-released program for learning the meanings of Chinese/Japanese characters (kanji) by means of repeated tests. The project is developed using CLISP, and runs on GNU/Linux and on MS Windows under Cygwin. CLKD uses a web browser as its interface....


Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 1024 KB Download (105): Common Lisp Kanji Drill Download

Added: October 08, 2010 | Visits: 1.266

Emacs Common Lisp Emacs Common Lisp is an implementation of Common Lisp, written in Emacs Lisp. It does not yet purport to conform to the ANSI standard since, among other things, CLOS, and pretty printing are missing. However, most other Common Lisp features like lexical closures, packages, readtables, multiple...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (120): Emacs Common Lisp Download

< 1 2 3 4 5 >