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

Auto Scoring Test Builder freeware
Filter: All | Freeware | Demo
 

Auto Scoring Test Builder

1 2 3 4 5 > 
Added: March 04, 2010 | Visits: 1.586

PSA::Test::Builder PSA::Test::Builder is a backend for building test libraries. SYNOPSIS package My::Test::Module; use PSA::Test::Builder; require Exporter; @ISA = qw(Exporter); @EXPORT = qw(ok); my $Test = Test::Builder->new; $Test->output(my_logfile); sub import { my($self) = shift; my $pack =... Platforms: *nix

License: Freeware Size: 112.64 KB Download (156): PSA::Test::Builder Download

Added: October 23, 2010 | Visits: 1.198

Test::Tester::CaptureRunner Test::Tester::CaptureRunner is a Perl module that provides help testing test modules built with Test::Builder. SYNOPSIS use Test::Tester tests => 6; use Test::MyStyle; check_test( sub { is_mystyle_eq("this", "that", "not eq"); }, { ok => 0, # expect this to fail name => "not eq",... Platforms: *nix

License: Freeware Size: 14.34 KB Download (99): Test::Tester::CaptureRunner Download

Added: July 16, 2010 | Visits: 1.408

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: January 02, 2010 | Visits: 1.149

Test::Version Test::Version is a Perl module that has the role to check for VERSION information in modules. SYNOPSIS use Test::Version; plan tests => $num_tests; version_ok( $file ); FUNCTIONS version_ok( FILENAME, [EXPECTED, [NAME] ] ) version_ok requires a filename and returns one of the three... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): Test::Version 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: April 27, 2010 | Visits: 5.810

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: May 10, 2010 | Visits: 818

classes::Test classes::Test are functions to help with classes pragma testing. SYNOPSIS can_new can_set_get has_decl has_class_const has_mixins has_mixins_hash is_classes MyClass; is_classes main; is_throwable X::Mine; is_classes_exc X::Mine; Generic tests based on Test::Builder designed to... Platforms: *nix

License: Freeware Size: 163.84 KB Download (99): classes::Test Download

Added: November 15, 2010 | Visits: 890

Test::Struct Test::Struct is a Perl extension for testing for structural equivelence. SYNOPSIS use Test::Struct; deep_eq($hairy_struct,$expected,Hairy structural test); is($x,$y); # and everything else Test::More has to offer! Test::Struct is used for doing deep structural comparisons of two objects.... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): Test::Struct Download

Added: August 27, 2013 | Visits: 419

django-autofixture django-autofixture is a Django app that aims to provide a simple way of loading masses of randomly generated test data into your development database. You can use a management command to load test data through command line. Its named autofixture because of the similarity of how I mainly used... Platforms: *nix

License: Freeware Size: 20.48 KB Download (40): django-autofixture Download

Released: September 03, 2012  |  Added: September 03, 2012 | Visits: 582

Auto Proxy Filter Test Auto Proxy Filter Test (APFT) automates the testing of safe and unsafe URLs against a content filtering proxy (such as Dansguardian) and helps prevent regressions. APFT is useful to people who are designing filter rules. Platforms: Windows, Mac, Linux

License: Freeware Size: 10.98 KB Download (58): Auto Proxy Filter Test Download

Added: May 01, 2010 | Visits: 833

Test::AutoBuild::Runtime Test::AutoBuild::Runtime is a Perl module with builder runtime state. SYNOPSIS use Test::AutoBuild::Runtime; my $runtime = new Test::AutoBuild::Runtime (archive_manager => $archive_manager, monitors => %monitors, repositories => %repositories, modules => %modules, package_types =>... Platforms: *nix

License: Freeware Size: 204.8 KB Download (122): Test::AutoBuild::Runtime Download

Added: February 26, 2010 | Visits: 1.176

auto-build auto-build is a Perl module that can run automated, unattended software build processes. SYNOPSIS # auto-build [OPTION]... Run build using latest code currently in source control # auto-build --config /etc/auto-build.d/auto-build.conf Run build using code committed prior to 12:30 on Dec... Platforms: *nix

License: Freeware Size: 204.8 KB Download (106): auto-build Download

Added: November 09, 2010 | Visits: 1.238

SWF::Builder::Character::EditText SWF::Builder::Character::EditText is a SWF dynamic editable text object. SYNOPSIS my $text = $mc->new_dynamic_text( $font ) ->size(10) ->color(000000) ->text(This is a text.); my $text_i = $text->place; my $field = $mc->new_input_field; $field->place; ^This module creates dynamic... Platforms: *nix

License: Freeware Size: 163.84 KB Download (97): SWF::Builder::Character::EditText Download

Added: September 09, 2010 | Visits: 1.165

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: 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: September 16, 2012  |  Added: September 16, 2012 | Visits: 500

JUB (JUnit test case Builder) JUB is intended as a JUnit test case generator framework accompanied by a number of IDE specific extensions. These extensions are to be invoked from within the IDE and must store generated test case code inside source repository administered by the IDE. Platforms: Windows, Mac, Linux

License: Freeware Size: 47 KB Download (49): JUB (JUnit test case Builder) Download

Released: November 14, 2007  |  Added: November 19, 2007 | Visits: 10.929

Calendar Builder Calendar Builder will allow you to build the calendars you want to your specific custom needs! customize your calendar with your own photographs, layout, use calendar packs (prebuilt sets of calendars), plus much more! Platforms: Windows

License: Freeware Size: 2.39 MB Download (2953): Calendar Builder Download

Added: January 08, 2006 | Visits: 7.434

Web page test automation toolkit Web page test automation tool. Fully written in Javascript and HTML set of tools, that fully simulate user walking through your pages. Allows you to set form fields, Verify value, position and related html source for specified text, handle alert and confirms, test new browser windows opened from... Platforms: Windows, Windows CE

License: Freeware Size: 13 KB Download (561): Web page test automation toolkit Download

Added: April 26, 2006 | Visits: 3.158

Java]|[Builder Janex]|[Builder gives Java programmers the possibility to give their users their applications with EXE files. To achieve this, the Janex]|[Builder user has only to enter the proper command line into Janex]|[Builder, which starts the Java application. The command line will then be implanted into... Platforms: Windows, Windows CE

License: Freeware Size: 195 KB Download (245): Java]|[Builder Download

Released: May 05, 2007  |  Added: May 27, 2007 | Visits: 8.918

Auto Loan Calculator Auto Loan Calculator is a free Microsoft Excel workbook that lets you (1) estimate the amount you'll need to finance when purchasing a car, (2) create a loan payment schedule with optional extra payments, and (3) analyze different loan options. The Auto Loan Calculator worksheet helps you... Platforms: Windows

License: Freeware Size: 34.4 KB Download (861): Auto Loan Calculator Download

1 2 3 4 5 >