commit | 243e32a85fb0d9378ba066aee60637c27875b886 | [log] [tgz] |
---|---|---|
author | Keir Mierle <keir@google.com> | Tue Nov 05 10:29:26 2019 -0800 |
committer | Keir Mierle <keir@google.com> | Tue Nov 05 14:48:19 2019 -0800 |
tree | 431e51370e8fbbef7dde99026ca516ac6b819892 | |
parent | c10c81201dba4d6533b1270baec0cd24aca752b9 [diff] |
pw_unit_test: Make simple runner look like GTest This makes these changes to the unit test framework: (1) Makes the simple test runner output match GTest (2) Adds a new RunAllTestsStart() and RunAllTestsEnd() event (3) Adds an intentionally-failing expectation to the sample test Example output: [==========] Running all tests. [ RUN ] PigweedTest.ExpectBool [ OK ] PigweedTest.ExpectBool [ RUN ] PigweedTest.ExpectBasicComparisons [ OK ] PigweedTest.ExpectBasicComparisons [ RUN ] PigweedTest.ExpectStringEquality [ OK ] PigweedTest.ExpectStringEquality [ RUN ] PigweedTest.NonCopyableType [ OK ] PigweedTest.NonCopyableType [ RUN ] PigweedTest.MacroArgumentsOnlyAreEvaluatedOnce [ OK ] PigweedTest.MacroArgumentsOnlyAreEvaluatedOnce [ RUN ] FixtureTest.CustomFixture [ OK ] FixtureTest.CustomFixture [ RUN ] PigweedTestFixture.TheNumberIs35 [ OK ] PigweedTestFixture.TheNumberIs35 [ RUN ] PigweedTestFixture.YupTheNumberIs35 [ OK ] PigweedTestFixture.YupTheNumberIs35 [ RUN ] PigweedTestFixture.MissingExpectations ../pw_unit_test/framework_test.cc:156: Failure Expected: missed_expectations == 200 [ FAILED ] PigweedTestFixture.MissingExpectations [==========] Done running all tests. [ PASSED ] 8 test(s). [ FAILED ] 1 test(s). Change-Id: I813096a9d62423e256993ae03724337d52702297
Pigweed is a collection of embedded-focused libraries, which we call “modules”. These modules are designed for small-footprint MMU-less microcontrollers like the ST Micro STM32L452 or the Nordic NRF82832. The modules are designed to facilitate easy integration into existing codebases.
Pigweed is in the early stages of development.