view lib/IMPL/Test/HarnessRunner.pm @ 422:b0481c071bea ref20150831

IMPL::Config::Container tests, YAMLConfiguration now works and tested
author cin
date Sun, 20 Aug 2017 00:20:41 +0300
parents ee36115f6a34
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;