xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.tunit
include
xtd
tunit
tunit_event_args.hpp
Go to the documentation of this file.
1
4
#pragma once
6
namespace
xtd
{
8
namespace
tunit
{
10
class
unit_test
;
12
19
class
tunit_event_args
{
20
public
:
22
25
explicit
tunit_event_args
(
const
xtd::tunit::unit_test
&
unit_test
) : ut_(
unit_test
) {};
27
29
33
[[nodiscard]]
auto
unit_test
() const -> const
xtd
::
tunit
::
unit_test
& {
return
ut_;}
35
36
private
:
37
const
xtd::tunit::unit_test
& ut_;
38
};
39
}
40
}
xtd::tunit::tunit_event_args::tunit_event_args
tunit_event_args(const xtd::tunit::unit_test &unit_test)
Create a new instance of class tunit_event_args.
Definition
tunit_event_args.hpp:25
xtd::tunit::tunit_event_args::unit_test
auto unit_test() const -> const xtd::tunit::unit_test &
Gets current unit test.
Definition
tunit_event_args.hpp:33
xtd::tunit::unit_test
The unit_test class is unit test base interface.
Definition
unit_test.hpp:30
xtd::tunit
The tunit namespace contains a unit test library.
Definition
abort_error.hpp:10
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
Generated on
for xtd by
Gammasoft
. All rights reserved.