=head1 EXAMPLES =head2 Running Tests in Multiple Languages If you have ruby installed in C, and also have C installed, you can cd into C (the directory where this README lives) and run the following command after installing the C utility: examples $ runtests --execrc my_execrc t -q - is a file which tells the test harness how to execute any tests it encounters. The C argument tells it to search in the C directory for any tests. One of the tests it finds is written in Ruby, but the C file tells it how to run this test. If you have Ruby installed but the test fails, try changing the path. If you don't have Ruby installed, you can simply comment out that line in C, but the test will fail. The C<-> tells C to read from C and C is merely a list of URLs we wish to test. See the documentation for C and C for more information about how to use this. If you have C installed, try running the following (experimental) command: runtests --execrc my_execrc -vc t/ - < test_urls.txt The C<-v> and C<-c> switches tell the harness to be both verbose and to output results in color. =head2 Custom Test Harnesses The C harnesses in the C directory are deprecated in favor of the new C/C tools. They are left in primary for curiosity sake, though you may find the C one useful as a reference for how to create a GUI interface for C. Instead, simple override the desired methods in C to create your own custom test harness. Don't like how the summary report is formatted? Just override the C<&TAPx::Harness::summary> method and use your new subclass: runtests --harness TAPx::Harness::MyHarness