|
AUnit
1.7.1
Unit testing framework for Arduino platforms inspired by ArduinoUnit and Google Test.
|
This is the complete list of members for aunit::MetaAssertion, including all inherited members.
| assertion(const char *file, uint16_t line, bool lhs, const char *opName, bool(*op)(bool lhs, bool rhs), bool rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, char lhs, const char *opName, bool(*op)(char lhs, char rhs), char rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, int lhs, const char *opName, bool(*op)(int lhs, int rhs), int rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, unsigned int lhs, const char *opName, bool(*op)(unsigned int lhs, unsigned int rhs), unsigned int rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, long lhs, const char *opName, bool(*op)(long lhs, long rhs), long rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, unsigned long lhs, const char *opName, bool(*op)(unsigned long lhs, unsigned long rhs), unsigned long rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, long long lhs, const char *opName, bool(*op)(long long lhs, long long rhs), long long rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, unsigned long long lhs, const char *opName, bool(*op)(unsigned long long lhs, unsigned long long rhs), unsigned long long rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, double lhs, const char *opName, bool(*op)(double lhs, double rhs), double rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const void *lhs, const char *opName, bool(*op)(const void *lhs, const void *rhs), const void *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const char *lhs, const char *opName, bool(*op)(const char *lhs, const char *rhs), const char *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const char *lhs, const char *opName, bool(*op)(const char *lhs, const String &rhs), const String &rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const char *lhs, const char *opName, bool(*op)(const char *lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const String &lhs, const char *opName, bool(*op)(const String &lhs, const char *rhs), const char *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const String &lhs, const char *opName, bool(*op)(const String &lhs, const String &rhs), const String &rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const String &lhs, const char *opName, bool(*op)(const String &lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const __FlashStringHelper *lhs, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const char *rhs), const char *rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const __FlashStringHelper *lhs, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const String &rhs), const String &rhs) | aunit::Assertion | protected |
| assertion(const char *file, uint16_t line, const __FlashStringHelper *lhs, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs) | aunit::Assertion | protected |
| Assertion()=default | aunit::Assertion | protected |
| assertionBool(const char *file, uint16_t line, bool arg, bool value) | aunit::Assertion | protected |
| assertionBoolVerbose(const char *file, uint16_t line, bool arg, const __FlashStringHelper *argString, bool value) | aunit::Assertion | protected |
| assertionNear(const char *file, uint16_t line, int lhs, int rhs, int error, const char *opName, bool(*compareNear)(int lhs, int rhs, int error)) | aunit::Assertion | protected |
| assertionNear(const char *file, uint16_t line, unsigned int lhs, unsigned int rhs, unsigned int error, const char *opName, bool(*compareNear)(unsigned int lhs, unsigned int rhs, unsigned int error)) | aunit::Assertion | protected |
| assertionNear(const char *file, uint16_t line, long lhs, long rhs, long error, const char *opName, bool(*compareNear)(long lhs, long rhs, long error)) | aunit::Assertion | protected |
| assertionNear(const char *file, uint16_t line, unsigned long lhs, unsigned long rhs, unsigned long error, const char *opName, bool(*compareNear)(unsigned long lhs, unsigned long rhs, unsigned long error)) | aunit::Assertion | protected |
| assertionNear(const char *file, uint16_t line, double lhs, double rhs, double error, const char *opName, bool(*compareNear)(double lhs, double rhs, double error)) | aunit::Assertion | protected |
| assertionNearVerbose(const char *file, uint16_t line, int lhs, const __FlashStringHelper *lhsString, int rhs, const __FlashStringHelper *rhsString, int error, const __FlashStringHelper *errorString, const char *opName, bool(*compareNear)(int lhs, int rhs, int error)) | aunit::Assertion | protected |
| assertionNearVerbose(const char *file, uint16_t line, unsigned int lhs, const __FlashStringHelper *lhsString, unsigned int rhs, const __FlashStringHelper *rhsString, unsigned int error, const __FlashStringHelper *errorString, const char *opName, bool(*compareNear)(unsigned int lhs, unsigned int rhs, unsigned int error)) | aunit::Assertion | protected |
| assertionNearVerbose(const char *file, uint16_t line, long lhs, const __FlashStringHelper *lhsString, long rhs, const __FlashStringHelper *rhsString, long error, const __FlashStringHelper *errorString, const char *opName, bool(*compareNear)(long lhs, long rhs, long error)) | aunit::Assertion | protected |
| assertionNearVerbose(const char *file, uint16_t line, unsigned long lhs, const __FlashStringHelper *lhsString, unsigned long rhs, const __FlashStringHelper *rhsString, unsigned long error, const __FlashStringHelper *errorString, const char *opName, bool(*compareNear)(unsigned long lhs, unsigned long rhs, unsigned long error)) | aunit::Assertion | protected |
| assertionNearVerbose(const char *file, uint16_t line, double lhs, const __FlashStringHelper *lhsString, double rhs, const __FlashStringHelper *rhsString, double error, const __FlashStringHelper *errorString, const char *opName, bool(*compareNear)(double lhs, double rhs, double error)) | aunit::Assertion | protected |
| assertionTestStatus(const char *file, uint16_t line, const char *testName, const __FlashStringHelper *statusMessage, bool ok) | aunit::MetaAssertion | protected |
| assertionVerbose(const char *file, uint16_t line, bool lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(bool lhs, bool rhs), bool rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, char lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(char lhs, char rhs), char rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, int lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(int lhs, int rhs), int rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, unsigned int lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(unsigned int lhs, unsigned int rhs), unsigned int rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, long lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(long lhs, long rhs), long rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, unsigned long lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(unsigned long lhs, unsigned long rhs), unsigned long rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, long long lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(long long lhs, long long rhs), long long rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, unsigned long long lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(unsigned long long lhs, unsigned long long rhs), unsigned long long rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, double lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(double lhs, double rhs), double rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const void *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const void *lhs, const void *rhs), const void *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const char *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const char *lhs, const char *rhs), const char *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const char *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const char *lhs, const String &rhs), const String &rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const char *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const char *lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const String &lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const String &lhs, const char *rhs), const char *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const String &lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const String &lhs, const String &rhs), const String &rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const String &lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const String &lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const __FlashStringHelper *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const char *rhs), const char *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const __FlashStringHelper *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const String &rhs), const String &rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| assertionVerbose(const char *file, uint16_t line, const __FlashStringHelper *lhs, const __FlashStringHelper *lhsString, const char *opName, bool(*op)(const __FlashStringHelper *lhs, const __FlashStringHelper *rhs), const __FlashStringHelper *rhs, const __FlashStringHelper *rhsString) | aunit::Assertion | protected |
| disableVerbosity(uint8_t verbosity) | aunit::Test | inline |
| enableVerbosity(uint8_t verbosity) | aunit::Test | inline |
| expire() | aunit::Test | inline |
| fail() | aunit::Test | inlineprotected |
| getLifeCycle() const | aunit::Test | inline |
| getName() const | aunit::Test | inline |
| getNext() | aunit::Test | inline |
| getRoot() | aunit::Test | static |
| getStatus() const | aunit::Test | inline |
| getVerbosity() const | aunit::Test | inlineprotected |
| init(const char *name) (defined in aunit::Test) | aunit::Test | inlineprotected |
| init(const __FlashStringHelper *name) (defined in aunit::Test) | aunit::Test | inlineprotected |
| isDone() const | aunit::Test | inline |
| isExpired() const | aunit::Test | inline |
| isFailed() const | aunit::Test | inline |
| isNotDone() const | aunit::Test | inline |
| isNotExpired() const | aunit::Test | inline |
| isNotFailed() const | aunit::Test | inline |
| isNotPassed() const | aunit::Test | inline |
| isNotSkipped() const | aunit::Test | inline |
| isOutputEnabled(bool ok) const | aunit::Assertion | protected |
| isOutputEnabledForStatus(uint8_t status) const | aunit::MetaAssertion | protected |
| isPassed() const | aunit::Test | inline |
| isSkipped() const | aunit::Test | inline |
| isVerbosity(uint8_t verbosity) const | aunit::Test | inlineprotected |
| kLifeCycleAsserted | aunit::Test | static |
| kLifeCycleExcluded | aunit::Test | static |
| kLifeCycleFinished | aunit::Test | static |
| kLifeCycleNew | aunit::Test | static |
| kLifeCycleSetup | aunit::Test | static |
| kMessageDone (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageExpired (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageFailed (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageNotDone (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageNotExpired (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageNotFailed (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageNotPassed (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageNotSkipped (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessagePassed (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kMessageSkipped (defined in aunit::MetaAssertion) | aunit::MetaAssertion | protectedstatic |
| kStatusExpired | aunit::Test | static |
| kStatusFailed | aunit::Test | static |
| kStatusPassed | aunit::Test | static |
| kStatusSkipped | aunit::Test | static |
| kStatusUnknown | aunit::Test | static |
| loop()=0 | aunit::Test | pure virtual |
| MetaAssertion() | aunit::MetaAssertion | inlineprotected |
| pass() | aunit::Test | inlineprotected |
| resolve() | aunit::Test | |
| setLifeCycle(uint8_t state) (defined in aunit::Test) | aunit::Test | inline |
| setPassOrFail(bool ok) | aunit::Test | |
| setStatus(uint8_t status) | aunit::Test | inline |
| setStatusNow(const char *file, uint16_t line, uint8_t status, const __FlashStringHelper *statusString) | aunit::MetaAssertion | protected |
| setup() | aunit::Test | inlinevirtual |
| skip() | aunit::Test | inline |
| teardown() | aunit::Test | inlinevirtual |
| Test() | aunit::Test |