/*
* 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 test
case.
*/
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 test suite.
*/
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