stats.h 615 B

123456789101112131415161718192021222324252627282930
  1. /* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/
  2. *
  3. * Use and distribution licensed under the BSD license. See
  4. * the COPYING file in the parent directory for full text.
  5. */
  6. #pragma once
  7. struct Stats {
  8. int32_t collection_success;
  9. int32_t collection_skipped;
  10. int32_t collection_failed;
  11. int32_t collection_total;
  12. uint32_t success;
  13. uint32_t skipped;
  14. uint32_t failed;
  15. uint32_t total;
  16. Stats() :
  17. collection_success(0),
  18. collection_skipped(0),
  19. collection_failed(0),
  20. collection_total(0),
  21. success(0),
  22. skipped(0),
  23. failed(0),
  24. total(0)
  25. { }
  26. };