30 template<
typename test_
class_t>
37 template<
typename test_
class_t>
52#define class_cleanup_(method_name) \
53 __##method_name##_static() {} \
54 class __class_cleanup_attribute : public xtd::tunit::class_cleanup_attribute { \
56 template<typename test_class> __class_cleanup_attribute(test_class& test) : class_cleanup_attribute(#method_name, test, &method_name, {__FILE__, __LINE__, __func__}) {__##method_name##_static();} \
57 } __class_cleanup_attribute {*this}; \
58 static void method_name()
Provides information about a xtd::diagnostics::stack_frame, which represents a function call on the c...
Definition stack_frame.h:47
This attribute is use to add cleanup class method to class test attribute.
Definition class_cleanup_attribute.h:21
class_cleanup_attribute(const std::string &name, test_class_t &test_class, void(*method)(), const xtd::diagnostics::stack_frame &stack_frame) noexcept
Creates new instance of class_cleanup_attribute attribute.
Definition class_cleanup_attribute.h:38
class_cleanup_attribute(const std::string &name, test_class_t &test_class, void(*method)()) noexcept
Creates new instance of class_cleanup_attribute attribute.
Definition class_cleanup_attribute.h:31
Represents a test class.
Definition test_class.h:39
void add_class_cleanup(const xtd::tunit::test &class_cleanup) noexcept
Adds the class cleanup method.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Contains xtd::tunit::test class.