xtd 0.2.0
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:
21 
27 
29 
33  const xtd::tunit::test_class& test_class() const noexcept {return tc_;}
35 
36  private:
37  const xtd::tunit::test_class& tc_;
38  };
39  }
40 }
Provides data for the xtd::tunit::class_test events.
Definition: class_event_args.h:18
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Represents a test class.
Definition: test_class.h:39
const xtd::tunit::test_class & test_class() const noexcept
Gets current class test.
Definition: class_event_args.h:33
Contains xtd::tunit::test_class class.
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:25
Contains xtd::tunit::tunit_event_args class.
The unit_test class is unit test base interface.
Definition: unit_test.h:35
tunit_event_args is the base class for classes containing event data.
Definition: tunit_event_args.h:19