File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22CTEST changelogs
33
4- ## [ master] - 2021-07-25
4+ ## [ master] - 2021-12-25
5+
6+ ## [ 0.1.2] - 2021-12-25
57## Added
6- - Adding assert fail
8+ - Adding assert fail (2021-07-25)
9+ - Removing on events warnings. Add initializer to pointer (2021-12-25)
710
811## [ 0.1.1] - 2021-07-04
912## Added
@@ -17,4 +20,5 @@ CTEST changelogs
1720
1821[ 0.1.0 ] : https://github.com/devfabiosilva/ctest/tree/v0.1.0
1922[ 0.1.1 ] : https://github.com/devfabiosilva/ctest/tree/v0.1.1
23+ [ 0.1.2 ] : https://github.com/devfabiosilva/ctest/tree/v0.1.2
2024[ master ] : https://github.com/devfabiosilva/ctest
Original file line number Diff line number Diff line change @@ -628,6 +628,7 @@ void on_add_test(header_on_cb fn)
628628 C_TEST_ON_TEST_FN (NULL )
629629 C_TEST_ON_END_FN (NULL )
630630 C_TEST_ON_ABORT_FN (NULL )
631+ C_TEST_ON_ADD_FN (NULL )
631632
632633 }
633634
@@ -678,6 +679,7 @@ void on_begin_test(header_on_cb fn)
678679 C_TEST_ON_TEST_FN (NULL )
679680 C_TEST_ON_END_FN (NULL )
680681 C_TEST_ON_ABORT_FN (NULL )
682+ C_TEST_ON_BEGIN_FN (NULL )
681683
682684 }
683685
@@ -726,6 +728,7 @@ void on_test(header_on_cb fn)
726728 C_TEST_ON_BEGIN_FN (NULL )
727729 C_TEST_ON_END_FN (NULL )
728730 C_TEST_ON_ABORT_FN (NULL )
731+ C_TEST_ON_TEST_FN (NULL )
729732
730733 }
731734
@@ -774,6 +777,7 @@ void on_end_test(header_on_cb fn)
774777 C_TEST_ON_TEST_FN (NULL )
775778 C_TEST_ON_BEGIN_FN (NULL )
776779 C_TEST_ON_ABORT_FN (NULL )
780+ C_TEST_ON_END_FN (NULL )
777781
778782 }
779783
@@ -822,6 +826,7 @@ void on_abort(header_on_cb fn)
822826 C_TEST_ON_TEST_FN (NULL )
823827 C_TEST_ON_BEGIN_FN (NULL )
824828 C_TEST_ON_END_FN (NULL )
829+ C_TEST_ON_ABORT_FN (NULL )
825830
826831 }
827832
You can’t perform that action at this time.
0 commit comments