xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
tunit_event_args.h
Go to the documentation of this file.
1 #pragma once
5 
7 namespace xtd {
9  namespace tunit {
11  class unit_test;
13 
21  public:
24 
26  tunit_event_args(const tunit_event_args&) = default;
28 
31  const xtd::tunit::unit_test& unit_test() const {return ut_;}
32 
33  private:
34  const xtd::tunit::unit_test& ut_;
35  };
36  }
37 }
tunit_event_args is the base class for classes containing event data.
Definition: tunit_event_args.h:20
tunit_event_args(const xtd::tunit::unit_test &unit_test)
Create a new instance of class tunit_event_args.
Definition: tunit_event_args.h:23
const xtd::tunit::unit_test & unit_test() const
Gets current unit test.
Definition: tunit_event_args.h:31
The template class.
Definition: unit_test.h:32
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17