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
|
|
@ -116,7 +116,9 @@ const OSCBundle& OSCBundle::Element::getBundle() const
|
|||
class OSCBundleTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
OSCBundleTests() : UnitTest ("OSCBundle class", "OSC") {}
|
||||
OSCBundleTests()
|
||||
: UnitTest ("OSCBundle class", UnitTestCategories::osc)
|
||||
{}
|
||||
|
||||
void runTest()
|
||||
{
|
||||
|
|
@ -219,7 +221,9 @@ static OSCBundleTests OSCBundleUnitTests;
|
|||
class OSCBundleElementTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
OSCBundleElementTests() : UnitTest ("OSCBundle::Element class", "OSC") {}
|
||||
OSCBundleElementTests()
|
||||
: UnitTest ("OSCBundle::Element class", UnitTestCategories::osc)
|
||||
{}
|
||||
|
||||
void runTest()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue