Mercurial > pub > Impl
view Lib/IMPL/Test/HarnessRunner.pm @ 197:6b1dda998839
Added IMPL::declare, IMPL::require, to simplify module definitions
IMPL::Transform now admires object inheritance while searching for the transformation
Added HTTP some exceptions
IMPL::Web::Application::RestResource almost implemented
| author | sergey | 
|---|---|
| date | Thu, 19 Apr 2012 02:10:02 +0400 | 
| parents | d1676be8afcc | 
| children | 5c82eec23bb6 | 
line wrap: on
 line source
package IMPL::Test::HarnessRunner; use strict; use warnings; use parent qw(IMPL::Object IMPL::Object::Autofill IMPL::Object::Serializable); use IMPL::lang qw(:declare :constants); use TAP::Parser; use Test::Harness; __PACKAGE__->PassThroughArgs; BEGIN { } sub CTOR { my $this = shift; } sub RunTests { my ($this,@files) = @_; return runtests(@files); } sub ExecuteTests { my ($this,%args) = @_; return Test::Harness::execute_tests(%args); } 1;
