mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
Added missing unit test categories
This commit is contained in:
parent
97e545cd44
commit
e88700be6e
7 changed files with 9 additions and 9 deletions
|
|
@ -346,9 +346,9 @@ void MidiMessageSequence::createControllerUpdatesForTime (int channelNumber, dou
|
|||
|
||||
#if JUCE_UNIT_TESTS
|
||||
|
||||
struct MidiMessageSequenceTest : public juce::UnitTest
|
||||
struct MidiMessageSequenceTest : public UnitTest
|
||||
{
|
||||
MidiMessageSequenceTest() : juce::UnitTest ("MidiMessageSequence") {}
|
||||
MidiMessageSequenceTest() : juce::UnitTest ("MidiMessageSequence", "MIDI/MPE") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1814,7 +1814,7 @@ bool WavAudioFormat::replaceMetadataInFile (const File& wavFile, const StringPai
|
|||
|
||||
struct WaveAudioFormatTests : public UnitTest
|
||||
{
|
||||
WaveAudioFormatTests() : UnitTest ("Wave audio format tests") {}
|
||||
WaveAudioFormatTests() : UnitTest ("Wave audio format tests", "Audio") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ namespace juce
|
|||
class ParameterGroupTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
ParameterGroupTests() : UnitTest ("ParameterGroups", "Parameters") {}
|
||||
ParameterGroupTests() : UnitTest ("ParameterGroups", "AudioProcessor Parameters") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ AudioParameterChoice& AudioParameterChoice::operator= (int newValue)
|
|||
|
||||
static struct AudioParameterChoiceTests final : public UnitTest
|
||||
{
|
||||
AudioParameterChoiceTests() : UnitTest ("AudioParameterChoice", "AudioProcessor parameters") {}
|
||||
AudioParameterChoiceTests() : UnitTest ("AudioParameterChoice", "AudioProcessor Parameters") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ AudioParameterInt& AudioParameterInt::operator= (int newValue)
|
|||
|
||||
static struct AudioParameterIntTests final : public UnitTest
|
||||
{
|
||||
AudioParameterIntTests() : UnitTest ("AudioParameterInt", "AudioProcessor parameters") {}
|
||||
AudioParameterIntTests() : UnitTest ("AudioParameterInt", "AudioProcessor Parameters") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -744,7 +744,7 @@ AudioProcessorValueTreeState::ButtonAttachment::~ButtonAttachment() {}
|
|||
|
||||
static struct ParameterAdapterTests final : public UnitTest
|
||||
{
|
||||
ParameterAdapterTests() : UnitTest ("Parameter Adapter") {}
|
||||
ParameterAdapterTests() : UnitTest ("Parameter Adapter", "AudioProcessor Parameters") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
@ -880,7 +880,7 @@ private:
|
|||
};
|
||||
|
||||
public:
|
||||
AudioProcessorValueTreeStateTests() : UnitTest ("Audio Processor Value Tree State", "AudioProcessor parameters") {}
|
||||
AudioProcessorValueTreeStateTests() : UnitTest ("Audio Processor Value Tree State", "AudioProcessor Parameters") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -643,7 +643,7 @@ bool ZipFile::Builder::writeToStream (OutputStream& target, double* const progre
|
|||
|
||||
struct ZIPTests : public UnitTest
|
||||
{
|
||||
ZIPTests() : UnitTest ("ZIP") {}
|
||||
ZIPTests() : UnitTest ("ZIP", "Compression") {}
|
||||
|
||||
void runTest() override
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue