AUnit
1.2.1
Unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test.
|
Utility class to hold the Verbosity constants. More...
#include <Verbosity.h>
Static Public Attributes | |
static const uint8_t | kAssertionPassed = 0x01 |
Print assertXxx() passed message. More... | |
static const uint8_t | kAssertionFailed = 0x02 |
Print assertXxx() failed message. More... | |
static const uint8_t | kTestPassed = 0x04 |
Print test passed message. More... | |
static const uint8_t | kTestFailed = 0x08 |
Print test failed message. More... | |
static const uint8_t | kTestSkipped = 0x10 |
Print test skipped message. More... | |
static const uint8_t | kTestExpired = 0x20 |
Print test timed out message. More... | |
static const uint8_t | kTestRunSummary = 0x40 |
Print TestRunner summary message. More... | |
static const uint8_t | kAssertionAll = (kAssertionPassed | kAssertionFailed) |
Print all assertXxx() messages. More... | |
static const uint8_t | kTestAll |
Print all test status messages. More... | |
static const uint8_t | kDefault |
The default verbosity. More... | |
static const uint8_t | kAll = 0xFF |
Print all messages. More... | |
static const uint8_t | kNone = 0x00 |
Print no messages. More... | |
Utility class to hold the Verbosity constants.
Current used only by TestRunner but potentially could be used by Test and TestOnce in the future, so it seemed better to pull these out into a separate file.
Definition at line 37 of file Verbosity.h.
|
static |
Print all messages.
Definition at line 73 of file Verbosity.h.
|
static |
Print all assertXxx() messages.
Definition at line 62 of file Verbosity.h.
|
static |
Print assertXxx() failed message.
Definition at line 43 of file Verbosity.h.
|
static |
Print assertXxx() passed message.
Definition at line 40 of file Verbosity.h.
|
static |
|
static |
Print no messages.
Definition at line 76 of file Verbosity.h.
|
static |
|
static |
Print test timed out message.
Definition at line 55 of file Verbosity.h.
|
static |
Print test failed message.
Definition at line 49 of file Verbosity.h.
|
static |
Print test passed message.
Definition at line 46 of file Verbosity.h.
|
static |
Print TestRunner summary message.
Definition at line 58 of file Verbosity.h.
|
static |
Print test skipped message.
Definition at line 52 of file Verbosity.h.