tunit - Reference Guide  1.0.0
Modern c++17 unit testing framework on Windows, macOS, Linux, iOS and android.
class_event_args.h
Go to the documentation of this file.
1 #pragma once
4 #include "test_class.h"
5 #include "tunit_event_args.h"
6 
8 namespace tunit {
11  public:
15 
18  const tunit::test_class& test_class() const noexcept {return this->tc_;}
19 
20  private:
21  const tunit::test_class& tc_;
22  };
23 }
Definition: test_class.h:21
class_event_args(const tunit::test_class &test_class, const tunit::unit_test &unit_test)
Create a new instance of class class_event_args.
Definition: class_event_args.h:14
The template class.
Definition: unit_test.h:23
const tunit::test_class & test_class() const noexcept
Gets current class test.
Definition: class_event_args.h:18
tunit_event_args is the base class for classes containing event data.
Definition: tunit_event_args.h:12
The tunit namespace contains a unit test library.
Definition: abort_error.h:8
Contains tunit::test_class class.
Provides data for the tunit::class_test events.
Definition: class_event_args.h:10
Contains tunit::tunit_event_args class.