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.
class_event_args.h
Go to the documentation of this file.
1 #pragma once
5 #include "test_class.h"
6 #include "tunit_event_args.h"
7 
9 namespace xtd {
11  namespace tunit {
19  public:
23 
26  const xtd::tunit::test_class& test_class() const noexcept {return tc_;}
27 
28  private:
29  const xtd::tunit::test_class& tc_;
30  };
31  }
32 }
Provides data for the xtd::tunit::class_test events.
Definition: class_event_args.h:18
const xtd::tunit::test_class & test_class() const noexcept
Gets current class test.
Definition: class_event_args.h:26
class_event_args(const xtd::tunit::test_class &test_class, const xtd::tunit::unit_test &unit_test)
Create a new instance of class class_event_args.
Definition: class_event_args.h:22
Definition: test_class.h:25
tunit_event_args is the base class for classes containing event data.
Definition: tunit_event_args.h:20
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
Contains xtd::tunit::test_class class.
Contains xtd::tunit::tunit_event_args class.