mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added juce_UnitTestCategories.h to replace raw strings used for test categories
This commit is contained in:
parent
c9fe0afd0f
commit
497a1b3fb7
106 changed files with 325 additions and 79 deletions
|
|
@ -402,7 +402,9 @@ String OSCAddressPattern::toString() const noexcept
|
|||
class OSCAddressTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
OSCAddressTests() : UnitTest ("OSCAddress class", "OSC") {}
|
||||
OSCAddressTests()
|
||||
: UnitTest ("OSCAddress class", UnitTestCategories::osc)
|
||||
{}
|
||||
|
||||
void runTest()
|
||||
{
|
||||
|
|
@ -446,7 +448,9 @@ static OSCAddressTests OSCAddressUnitTests;
|
|||
class OSCAddressPatternTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
OSCAddressPatternTests() : UnitTest ("OSCAddressPattern class", "OSC") {}
|
||||
OSCAddressPatternTests()
|
||||
: UnitTest ("OSCAddressPattern class", UnitTestCategories::osc)
|
||||
{}
|
||||
|
||||
void runTest()
|
||||
{
|
||||
|
|
@ -585,7 +589,9 @@ static OSCAddressPatternTests OSCAddressPatternUnitTests;
|
|||
class OSCPatternMatcherTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
OSCPatternMatcherTests() : UnitTest ("OSCAddress class / pattern matching", "OSC") {}
|
||||
OSCPatternMatcherTests()
|
||||
: UnitTest ("OSCAddress class / pattern matching", UnitTestCategories::osc)
|
||||
{}
|
||||
|
||||
void runTest()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue