view lib/IMPL/Test/HarnessRunner.pm @ 411:ee36115f6a34 ref20150831

sync
author cin
date Mon, 21 Sep 2015 00:53:10 +0300
parents c6e90e02dd17
children
line wrap: on
line source

package IMPL::Test::HarnessRunner;
use strict;
use warnings;

use TAP::Parser;
use Test::Harness;

use IMPL::declare {
	base => [
		'IMPL::Object' => undef,
		'IMPL::Object::Serializable' => undef
	]
};

sub RunTests {
    my ($this,@files) = @_;
    
    return runtests(@files);
}

sub ExecuteTests {
    my ($this,%args) = @_;
    
    return Test::Harness::execute_tests(%args);
}

1;