1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include <iostream>
#include "SimpleITKTestHarness.h"
#include <itksys/SystemTools.hxx>
DataFinder dataFinder;
int main(int argc, char* argv[])
{
for ( int i = 0; i < argc; i++ ) {
std::string arg = argv[i];
if ( arg == "--help" ) {
std::cout << "GTest flags" << std::endl;
std::cout << "\t--gtest_list_tests List the tests" << std::endl;
std::cout << "\t--gtest_repeat Number of times to repeat each test" << std::endl;
std::cout << "\t--gtest_filter Glob filter of test name" << std::endl;
std::cout << "\t--gtest_print_time Time required to run" << std::endl;
std::cout << "\nBy default, a Google Test program runs all tests the user has defined. Sometimes, you want to run only a subset of the tests (e.g. for debugging or quickly verifying a change). If you set the GTEST_FILTER environment variable or the --gtest_filter flag to a filter string, Google Test will only run the tests whose full names (in the form of TestCaseName.TestName) match the filter.\n"
"The format of a filter is a ':'-separated list of wildcard patterns (called the positive patterns) optionally followed by a '-' and another ':'-separated pattern list (called the negative patterns). A test matches the filter if and only if it matches any of the positive patterns but does not match any of the negative patterns.\n"
"A pattern may contain '*' (matches any string) or '?' (matches any single character). For convenience, the filter '*-NegativePatterns' can be also written as '-NegativePatterns'.\n"
"For example:\n\n"
" * ./foo_test Has no flag, and thus runs all its tests.\n"
" * ./foo_test --gtest_filter=* Also runs everything, due to the single match-everything * value.\n"
" * ./foo_test --gtest_filter=FooTest.* Runs everything in test case FooTest.\n"
" * ./foo_test --gtest_filter=*Null*:*Constructor* Runs any test whose full name contains either \"Null\" or \"Constructor\".\n"
" * ./foo_test --gtest_filter=-*DeathTest.* Runs all non-death tests.\n"
" * ./foo_test --gtest_filter=FooTest.*-FooTest.Bar Runs everything in test case FooTest except FooTest.Bar. " << std::endl;
return 0;
}
}
testing::InitGoogleTest ( &argc, argv );
return RUN_ALL_TESTS();
}
|