| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * Copyright The OpenTelemetry Authors
- * SPDX-License-Identifier: Apache-2.0
- */
- /*
- * DO NOT EDIT, this is an Auto-generated file from:
- * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
- */
- #pragma once
- #include "opentelemetry/common/macros.h"
- #include "opentelemetry/version.h"
- OPENTELEMETRY_BEGIN_NAMESPACE
- namespace semconv
- {
- namespace test
- {
- /**
- The fully qualified human readable name of the <a href="https://wikipedia.org/wiki/Test_case">test
- case</a>.
- */
- static constexpr const char *kTestCaseName = "test.case.name";
- /**
- The status of the actual test case result from test execution.
- */
- static constexpr const char *kTestCaseResultStatus = "test.case.result.status";
- /**
- The human readable name of a <a href="https://wikipedia.org/wiki/Test_suite">test suite</a>.
- */
- static constexpr const char *kTestSuiteName = "test.suite.name";
- /**
- The status of the test suite run.
- */
- static constexpr const char *kTestSuiteRunStatus = "test.suite.run.status";
- namespace TestCaseResultStatusValues
- {
- /**
- pass
- */
- static constexpr const char *kPass = "pass";
- /**
- fail
- */
- static constexpr const char *kFail = "fail";
- } // namespace TestCaseResultStatusValues
- namespace TestSuiteRunStatusValues
- {
- /**
- success
- */
- static constexpr const char *kSuccess = "success";
- /**
- failure
- */
- static constexpr const char *kFailure = "failure";
- /**
- skipped
- */
- static constexpr const char *kSkipped = "skipped";
- /**
- aborted
- */
- static constexpr const char *kAborted = "aborted";
- /**
- timed_out
- */
- static constexpr const char *kTimedOut = "timed_out";
- /**
- in_progress
- */
- static constexpr const char *kInProgress = "in_progress";
- } // namespace TestSuiteRunStatusValues
- } // namespace test
- } // namespace semconv
- OPENTELEMETRY_END_NAMESPACE
|