Mercurial > pub > Impl
view lib/IMPL/Test/HarnessRunner.pm @ 409:f7eeafbd33da ref20150831
sync
author | cin |
---|---|
date | Sun, 13 Sep 2015 19:30:49 +0300 |
parents | c6e90e02dd17 |
children | ee36115f6a34 |
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 TAP::Parser; use Test::Harness; __PACKAGE__->PassThroughArgs; 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;