1
0
Fork 0
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:
ed 2019-04-03 15:10:40 +01:00
parent c9fe0afd0f
commit 497a1b3fb7
106 changed files with 325 additions and 79 deletions

View file

@ -35,7 +35,7 @@ class LogRampedValueTests : public UnitTest
{
public:
LogRampedValueTests()
: UnitTest ("LogRampedValueTests", "DSP")
: UnitTest ("LogRampedValueTests", UnitTestCategories::dsp)
{}
void runTest() override

View file

@ -31,7 +31,9 @@ namespace dsp
struct LinearAlgebraUnitTest : public UnitTest
{
LinearAlgebraUnitTest() : UnitTest ("Linear Algebra UnitTests", "DSP") {}
LinearAlgebraUnitTest()
: UnitTest ("Linear Algebra UnitTests", UnitTestCategories::dsp)
{}
struct AdditionTest
{