xtd 1.0.0
Loading...
Searching...
No Matches
register_test_class_types.hpp
Go to the documentation of this file.
1
4#pragma once
6#include <xtd/typeof>
7
9namespace xtd {
11 namespace tunit {
36 template<template<typename> class test_class_t, typename... args_t>
38
40 template<template<typename> class test_class_t, typename arg_t, typename... args_t>
41 class register_test_class_types<test_class_t, arg_t, args_t...> {
43 register_test_class_types<test_class_t, args_t...> next;
44 };
45
46 template<template<typename> class test_class_t>
47 class register_test_class_types<test_class_t> {};
49 }
50}
Represents the register test class types.
Definition register_test_class_types.hpp:37
Represents a test class attribute.
Definition test_class_attribute.hpp:24
#define typeof_
Used to obtain the type object of a specified type or object.
Definition typeof.hpp:24
The tunit namespace contains a unit test library.
Definition abort_error.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::tunit::test_class_attribute class.