third_party.pigweed.src/pw_unit_test
Keir Mierle 2b0e008a75 pw_unit_test: Clang fixes
This makes two tweaks to enable compiling with Clang on the desktop:
- Switch from (&function_pointer) to (*function_pointer) style.
- Make destructor final in derived test class to prevent warning from
  the "-Wdelete-non-abstract-non-virtual-dtor" flag.

Change-Id: Ic1783e41ee8092a5ad218ebdb48376742f85ff50
2019-11-08 00:01:49 -08:00
..
public pw_unit_test: Clang fixes 2019-11-08 00:01:49 -08:00
py Build and run unit tests through GN 2019-11-08 01:16:04 +00:00
BUILD.gn
framework_test.cc
framework.cc pw_unit_test: Make simple runner look like GTest 2019-11-05 14:48:19 -08:00
main.cc
README.md
simple_printing_event_handler.cc pw_unit_test: Make simple runner look like GTest 2019-11-05 14:48:19 -08:00
test.gni Build and run unit tests through GN 2019-11-08 01:16:04 +00:00

pw_unit_test: Lightweight C++ unit testing framework

The pw_unit_test module contains the code for Pigweed Test, a Googletest-compatible unit testing framework that runs on anything from bare-metal microcontrollers to large desktop operating systems.