#include <test_class_attribute.h>
template<typename test_class_t>
class xtd::tunit::test_class_attribute< test_class_t >
Represents a test class attribute.
- Namespace
- xtd::tunit
- Library
- xtd.tunit
- Examples
- The following example shows how to use xtd::tunit::test_class_attribute class.
#include <xtd/xtd.tunit>
namespace unit_tests {
public:
static void class_initialize() {
}
static void class_cleanup() {
}
static void test_initialize() {
}
static void test_cleanup() {
}
void test_case1() {
}
void test_case2() {
}
void test_case3() {
}
};
}
auto main()->int {
}
- Examples:
- test_class_without_helpers.cpp.
◆ test_class_attribute()
template<typename test_class_t >
Creates a new instance of test_class_attribute with specified name.
- Parameters
-
name | The name of the test class attribute. |
The documentation for this class was generated from the following file: