use Test::More; use ServerConnection; my $connection = ServerConnection->new(); $connection->connect(); ok( 1==1, "A test"); # etc.... #### # In the launch script my $connectionObject = ConnectionObject->new(); $connectionObject->connect(); my $model = Test::TAP::Model->new(); $model->run_tests( $connectionObject, @scripts_ptest );