Code

Fixed const/non-const mismatch loop.
[inkscape.git] / cxxtest / sample / yes_no_runner.cpp
1 //
2 // A sample program that uses class YesNoRunner to run all the tests
3 // and find out if all pass.
4 //
6 #include <cxxtest/YesNoRunner.h>
8 int main()
9 {
10     return CxxTest::YesNoRunner().run();
11 }