catch_benchmarking_all.hpp 1.0 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. */
  5. // A proxy header that includes all of the benchmarking headers to allow
  6. // concise include of the benchmarking features. You should prefer the
  7. // individual includes in standard use.
  8. #include "catch_benchmark.hpp"
  9. #include "catch_chronometer.hpp"
  10. #include "catch_clock.hpp"
  11. #include "catch_constructor.hpp"
  12. #include "catch_environment.hpp"
  13. #include "catch_estimate.hpp"
  14. #include "catch_execution_plan.hpp"
  15. #include "catch_optimizer.hpp"
  16. #include "catch_outlier_classification.hpp"
  17. #include "catch_sample_analysis.hpp"
  18. #include "detail/catch_analyse.hpp"
  19. #include "detail/catch_benchmark_function.hpp"
  20. #include "detail/catch_complete_invoke.hpp"
  21. #include "detail/catch_estimate_clock.hpp"
  22. #include "detail/catch_measure.hpp"
  23. #include "detail/catch_repeat.hpp"
  24. #include "detail/catch_run_for_at_least.hpp"
  25. #include "detail/catch_stats.hpp"
  26. #include "detail/catch_timing.hpp"