Classes | |
class | juce::UnitTest |
This is a base class for classes that perform a unit test. More... | |
class | juce::UnitTestRunner |
Runs a set of unit tests. More... | |
struct | juce::UnitTestRunner::TestResult |
Contains the results of a test. More... | |
Namespaces | |
juce | |
Macros | |
#define | expectDoesNotThrow(expr) |
Checks that the result of an expression does not throw an exception. More... | |
#define | expectThrows(expr) |
Checks that the result of an expression throws an exception. More... | |
#define | expectThrowsType(expr, type) |
Checks that the result of an expression throws an exception of a certain type. More... | |
#define expectDoesNotThrow | ( | expr | ) |
Checks that the result of an expression does not throw an exception.
#define expectThrows | ( | expr | ) |
Checks that the result of an expression throws an exception.
#define expectThrowsType | ( | expr, | |
type | |||
) |
Checks that the result of an expression throws an exception of a certain type.