Help for this page

Select Code to Download


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