UnitTestResultReportLib.h 614 B

123456789101112131415161718192021222324252627
  1. /** @file
  2. Provides a unit test result report. This allows new result output formats to
  3. be easily customized.
  4. Copyright (c) Microsoft Corporation.<BR>
  5. Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.<BR>
  6. SPDX-License-Identifier: BSD-2-Clause-Patent
  7. **/
  8. #ifndef __UNIT_TEST_RESULT_REPORT_LIB_H__
  9. #define __UNIT_TEST_RESULT_REPORT_LIB_H__
  10. #include <UnitTestFrameworkTypes.h>
  11. /**
  12. Method to produce the Unit Test run results
  13. @retval Success
  14. **/
  15. EFI_STATUS
  16. EFIAPI
  17. OutputUnitTestFrameworkReport (
  18. IN UNIT_TEST_FRAMEWORK_HANDLE FrameworkHandle
  19. );
  20. #endif