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

Test::TestCoverage 0.05

  Date Added: July 03, 2010  |  Visits: 734

Test::TestCoverage

Report Broken Link
Printer Friendly Version


Product Homepage
Download (86 downloads)



Test::TestCoverage is Perl module to test if your test covers all public subroutines of the package. SYNOPSIS use Test::TestCoverage; test_coverage(My::Module); my $obj = My::Module->new(); $obj->foo(); $obj->bar(); # test will be ok, assumed that My::Module has the subroutines new, foo and bar ok_test_coverage(My::Module); reset_test_coverage(My::Module); reset_all_test_coverage(); test_coverage(My::Module); my $obj = My::Method->new(); $obj->foo(); # test will be not ok, because bar is not invoked ok_test_coverage(My::Module); reset_test_coverage(My::Module); reset_all_test_coverage(); test_coverage(My::Module); test_coverage_except(My::Module,bar); my $obj = My::Method->new(); $obj->foo(); # test will be ok, because bar is excepted of test ok_test_coverage(My::Module); If a module is written, the tests cover just a few subroutines of the module. This module aims to support the author in writing "complete" tests. If one of the "public" subroutines are missed in the testscript, the test ok_test_coverage will fail. "private" subroutines are defined as subroutines that names begin with _ like _private_sub{...} and "public" is the opposite..

Requirements: No special requirements
Platforms: Linux
Keyword: All Public Coverage If Your Libraries Module Perl Module Programming Public Reset Subroutines Test Testcoverage Testtestcoverage
Users rating: 0/10

License: Freeware Size: 4.1 KB
USER REVIEWS
More Reviews or Write Review


TEST::TESTCOVERAGE RELATED
Networking Tools  -  gibberish 0.2.1
With this tool you can test if your tcp-server can handle gibberish. For example a webserver: with this tool you can test your webserver if can handle if someone sends gibberish instead of an http-request. Usage: ./gibberish -t/-u -a/-b...
3.07 KB  
Video Editors  -  Cute Screen Recorder 1.2020
Cute Screen Recorder Free Version is a easyt-to-use screen recorder software.It is able to record all screen activity on your computer and create mp4,flv,swf and wmv video.
1.68 MB  
Modules  -  Restore Bundled jQuery 0.1
Restores and enforces the bundled jQuery in the admin if your theme registers a newer version which may not be compatible with WordPress yet.You can try this plugin if your menus or widgets screens broke. Install : 1. Upload...
10 KB  
Programming  -  JChav 1.1.0
JChav is a way to see the change in performance of your Web application over time by running a benchmark test for each build you produce. JChav project is an Ant task that, when used in conjunction with the JMeter ant task, produces historic views...
1.7 MB  
Libraries  -  Module::Build::TestReporter 1.00
Module::Build::TestReporter is a Perl module to help users report test failures. SYNOPSIS use Module::Build::TestReporter; my $build = Module::Build::TestReporter->new( # normal Module::Build code here ); # or, in your own M::B subclass...
8.19 KB  
Libraries  -  Religion 1.04
Religion is a Perl module that can generate tracebacks and create and install die() and warn() handlers. This is a second go at a module to simplify installing die() and warn() handlers, and to make such handlers easier to write and control....
5.12 KB  
Libraries  -  AtExit 2.01
AtExit is a Perl module that can perform exit processing for a program or object. SYNOPSIS use AtExit; sub cleanup { my @args = @_; print "cleanup() executing: args = @argsn"; } ## Register subroutines to be called when this program...
8.19 KB  
Networking Tools  -  Perl Advanced TCP Hijacking 0.8
Perl Advanced TCP Hijacking is a collection of tools for inspecting and hijacking network connections written in Perl. It consists of a packet generator, an RST daemon, a sniffer, an ICMP redirection tool, an ARP redirection tool, an IDS testing...
471.04 KB  
Libraries  -  Test::Reporter::Date::Format 1.27
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,...
23.55 KB  
Libraries  -  Statistics::ChisqIndep 0.1
Statistics::ChisqIndep is a Perl module to perform chi-square test of independence (a.k.a. contingency tables). Synopsis #example for Statistics::ChisqIndep use strict; use Statistics::ChisqIndep; use POSIX; # input data in the form of the...
3.07 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB