Mercurial > pub > Impl
view _test/run_tests.pl @ 4:e59f44f75f20
DOM - в разработке
Testing - по мелочи
Property - изменен механизм выбора имплементора
author | Sergey |
---|---|
date | Wed, 12 Aug 2009 17:36:07 +0400 |
parents | |
children | 818c74b038ae |
line wrap: on
line source
#!/usr/bin/perl use strict; use warnings; use IMPL::Test::HarnessRunner; use IMPL::Test::Straps; my $runner = new IMPL::Test::HarnessRunner( Strap => new IMPL::Test::Straps () ); $runner->Strap->Executors( { Re => '.*', Executor => $runner->Strap } ); $runner->RunTests(<*.t>); 1;