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
tunit_event_args
(
const
tunit_event_args
&) =
default
;
30
tunit_event_args
& operator =(
const
tunit_event_args
&) =
delete
;
32
34
38
const
xtd::tunit::unit_test
&
unit_test
()
const
{
return
ut_;}
40
41
private
:
42
const
xtd::tunit::unit_test
& ut_;
43
};
44
}
45
}
xtd::tunit::tunit_event_args
tunit_event_args is the base class for classes containing event data.
Definition
tunit_event_args.hpp:19
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
const xtd::tunit::unit_test & unit_test() const
Gets current unit test.
Definition
tunit_event_args.hpp:38
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.