|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Contains the results of a test. More...
#include "juce_UnitTest.h"
Public Member Functions | |
| TestResult (const String &name, const String &subCategory) | |
Public Attributes | |
| String | unitTestName |
| The main name of this test (i.e. | |
| String | subcategoryName |
| The name of the current subcategory (i.e. | |
| int | passes |
| The number of UnitTest::expect() calls that succeeded. | |
| int | failures |
| The number of UnitTest::expect() calls that failed. | |
| StringArray | messages |
| A list of messages describing the failed tests. | |
| Time | startTime |
| The time at which this test was started. | |
| Time | endTime |
| The time at which this test ended. | |
Contains the results of a test.
One of these objects is instantiated each time UnitTest::beginTest() is called, and it contains details of the number of subsequent UnitTest::expect() calls that are made.
Definition at line 377 of file juce_UnitTest.h.
|
explicit |
Definition at line 381 of file juce_UnitTest.h.
| Time juce::UnitTestRunner::TestResult::endTime |
The time at which this test ended.
Definition at line 403 of file juce_UnitTest.h.
| int juce::UnitTestRunner::TestResult::failures |
The number of UnitTest::expect() calls that failed.
Definition at line 395 of file juce_UnitTest.h.
| StringArray juce::UnitTestRunner::TestResult::messages |
A list of messages describing the failed tests.
Definition at line 398 of file juce_UnitTest.h.
| int juce::UnitTestRunner::TestResult::passes |
The number of UnitTest::expect() calls that succeeded.
Definition at line 393 of file juce_UnitTest.h.
| Time juce::UnitTestRunner::TestResult::startTime |
The time at which this test was started.
Definition at line 401 of file juce_UnitTest.h.
| String juce::UnitTestRunner::TestResult::subcategoryName |
The name of the current subcategory (i.e.
the name that was set when UnitTest::beginTest() was called).
Definition at line 390 of file juce_UnitTest.h.
| String juce::UnitTestRunner::TestResult::unitTestName |
The main name of this test (i.e.
the name of the UnitTest object being run).
Definition at line 388 of file juce_UnitTest.h.