diff --git a/lib/grit/audio/airwindows/airwindows_test.cpp b/lib/grit/audio/airwindows/airwindows_test.cpp index 4ef8cd0..5ed0f77 100644 --- a/lib/grit/audio/airwindows/airwindows_test.cpp +++ b/lib/grit/audio/airwindows/airwindows_test.cpp @@ -39,17 +39,17 @@ auto test() -> void } } -TEMPLATE_TEST_CASE("grit/audio/airwindows: AirWindowsFireAmp", "", float, double) +TEMPLATE_TEST_CASE("audio/airwindows: AirWindowsFireAmp", "", float, double) { test>(); } -TEMPLATE_TEST_CASE("grit/audio/airwindows: AirWindowsGrindAmp", "", float, double) +TEMPLATE_TEST_CASE("audio/airwindows: AirWindowsGrindAmp", "", float, double) { test>(); } -TEMPLATE_TEST_CASE("grit/audio/airwindows: AirWindowsVinylDither", "", float, double) +TEMPLATE_TEST_CASE("audio/airwindows: AirWindowsVinylDither", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/dynamic/transient_shaper_test.cpp b/lib/grit/audio/dynamic/transient_shaper_test.cpp index 26eabbd..41f1a06 100644 --- a/lib/grit/audio/dynamic/transient_shaper_test.cpp +++ b/lib/grit/audio/dynamic/transient_shaper_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/dynamic: TransientShaper", "", float, double) +TEMPLATE_TEST_CASE("audio/dynamic: TransientShaper", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/envelope/envelope_follower_test.cpp b/lib/grit/audio/envelope/envelope_follower_test.cpp index cccd299..228a18e 100644 --- a/lib/grit/audio/envelope/envelope_follower_test.cpp +++ b/lib/grit/audio/envelope/envelope_follower_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/envelope: EnvelopeFollower", "", float, double) +TEMPLATE_TEST_CASE("audio/envelope: EnvelopeFollower", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/music/note_test.cpp b/lib/grit/audio/music/note_test.cpp index 9b52219..d8db2c0 100644 --- a/lib/grit/audio/music/note_test.cpp +++ b/lib/grit/audio/music/note_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/music: noteToHertz", "", float, double) +TEMPLATE_TEST_CASE("audio/music: noteToHertz", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/noise/white_noise_test.cpp b/lib/grit/audio/noise/white_noise_test.cpp index 409cc45..048f45f 100644 --- a/lib/grit/audio/noise/white_noise_test.cpp +++ b/lib/grit/audio/noise/white_noise_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/noise: WhiteNoise", "", float, double) +TEMPLATE_TEST_CASE("audio/noise: WhiteNoise", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/stereo/stereo_frame_test.cpp b/lib/grit/audio/stereo/stereo_frame_test.cpp index 25ede0a..017a4c9 100644 --- a/lib/grit/audio/stereo/stereo_frame_test.cpp +++ b/lib/grit/audio/stereo/stereo_frame_test.cpp @@ -7,13 +7,13 @@ using namespace grit; -TEMPLATE_TEST_CASE("grit/audio/stereo: StereoFrame", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: StereoFrame", "[stereo]", float, double) { using T = TestType; STATIC_REQUIRE(etl::same_as::value_type, T>); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator+(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator+(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto const result = StereoFrame{T(1), T(2)} + T(1); @@ -21,7 +21,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator+(StereoFrame)", "[stereo]", floa REQUIRE(result.right == Catch::Approx(3)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator-(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator-(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto const result = StereoFrame{T(1), T(2)} - T(1); @@ -29,7 +29,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator-(StereoFrame)", "[stereo]", floa REQUIRE(result.right == Catch::Approx(1)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator*(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator*(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto const result = StereoFrame{T(1), T(2)} * T(2); @@ -37,7 +37,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator*(StereoFrame)", "[stereo]", floa REQUIRE(result.right == Catch::Approx(4)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator/(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator/(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto const result = StereoFrame{T(1), T(2)} / T(2); @@ -45,7 +45,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator/(StereoFrame)", "[stereo]", floa REQUIRE(result.right == Catch::Approx(1)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator+=(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator+=(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto result = StereoFrame{T(1), T(2)}; @@ -54,7 +54,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator+=(StereoFrame)", "[stereo]", flo REQUIRE(result.right == Catch::Approx(3)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator-=(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator-=(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto result = StereoFrame{T(1), T(2)}; @@ -63,7 +63,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator-=(StereoFrame)", "[stereo]", flo REQUIRE(result.right == Catch::Approx(1)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator*=(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator*=(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto result = StereoFrame{T(1), T(2)}; @@ -72,7 +72,7 @@ TEMPLATE_TEST_CASE("grit/audio/stereo: operator*=(StereoFrame)", "[stereo]", flo REQUIRE(result.right == Catch::Approx(4)); } -TEMPLATE_TEST_CASE("grit/audio/stereo: operator/=(StereoFrame)", "[stereo]", float, double) +TEMPLATE_TEST_CASE("audio/stereo: operator/=(StereoFrame)", "[stereo]", float, double) { using T = TestType; auto result = StereoFrame{T(1), T(2)}; diff --git a/lib/grit/audio/waveshape/diode_rectifier_test.cpp b/lib/grit/audio/waveshape/diode_rectifier_test.cpp index 7a9b2f6..f883fe6 100644 --- a/lib/grit/audio/waveshape/diode_rectifier_test.cpp +++ b/lib/grit/audio/waveshape/diode_rectifier_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/waveshape: DiodeRectifier", "", double) +TEMPLATE_TEST_CASE("audio/waveshape: DiodeRectifier", "", double) { using Float = TestType; @@ -16,7 +16,7 @@ TEMPLATE_TEST_CASE("grit/audio/waveshape: DiodeRectifier", "", double) REQUIRE(shaper(Float(+1.0)) == Catch::Approx(+0.9978904933)); } -TEMPLATE_TEST_CASE("grit/audio/waveshape: DiodeRectifierADAA1", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: DiodeRectifierADAA1", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/waveshape/full_wave_rectifier_test.cpp b/lib/grit/audio/waveshape/full_wave_rectifier_test.cpp index 404ab55..20cb73d 100644 --- a/lib/grit/audio/waveshape/full_wave_rectifier_test.cpp +++ b/lib/grit/audio/waveshape/full_wave_rectifier_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/waveshape: FullWaveRectifier", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: FullWaveRectifier", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/waveshape/half_wave_rectifier_test.cpp b/lib/grit/audio/waveshape/half_wave_rectifier_test.cpp index 2e41b21..d7b1c45 100644 --- a/lib/grit/audio/waveshape/half_wave_rectifier_test.cpp +++ b/lib/grit/audio/waveshape/half_wave_rectifier_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/waveshape: HalfWaveRectifier", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: HalfWaveRectifier", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/waveshape/hard_clipper_test.cpp b/lib/grit/audio/waveshape/hard_clipper_test.cpp index 043ed91..eca212a 100644 --- a/lib/grit/audio/waveshape/hard_clipper_test.cpp +++ b/lib/grit/audio/waveshape/hard_clipper_test.cpp @@ -5,7 +5,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/waveshape: HardClipper", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: HardClipper", "", float, double) { using Float = TestType; diff --git a/lib/grit/audio/waveshape/tanh_clipper_test.cpp b/lib/grit/audio/waveshape/tanh_clipper_test.cpp index e457bcc..56cd0ec 100644 --- a/lib/grit/audio/waveshape/tanh_clipper_test.cpp +++ b/lib/grit/audio/waveshape/tanh_clipper_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/audio/waveshape: TanhClipper", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: TanhClipper", "", float, double) { using Float = TestType; @@ -19,7 +19,7 @@ TEMPLATE_TEST_CASE("grit/audio/waveshape: TanhClipper", "", float, double) REQUIRE(shaper(Float(+1.0)) == Catch::Approx(+0.7615941559)); } -TEMPLATE_TEST_CASE("grit/audio/waveshape: TanhClipperADAA1", "", float, double) +TEMPLATE_TEST_CASE("audio/waveshape: TanhClipperADAA1", "", float, double) { using Float = TestType; diff --git a/lib/grit/eurorack_test.cpp b/lib/grit/eurorack_test.cpp index fe71987..873230a 100644 --- a/lib/grit/eurorack_test.cpp +++ b/lib/grit/eurorack_test.cpp @@ -9,7 +9,7 @@ #include #include -TEST_CASE("grit/audio/eurorack: Hades") +TEST_CASE("audio/eurorack: Hades") { static constexpr auto blockSize = 32; @@ -85,7 +85,7 @@ TEST_CASE("grit/audio/eurorack: Hades") } } -TEST_CASE("grit/audio/eurorack: Amp") +TEST_CASE("audio/eurorack: Amp") { static constexpr auto blockSize = 32; diff --git a/lib/grit/fft/fft_test.cpp b/lib/grit/fft/fft_test.cpp index 2679350..c11b0d9 100644 --- a/lib/grit/fft/fft_test.cpp +++ b/lib/grit/fft/fft_test.cpp @@ -30,7 +30,7 @@ auto testComplexPlan() -> void } } -TEMPLATE_TEST_CASE("grit/fft: ComplexPlan", "", etl::complex, etl::complex) +TEMPLATE_TEST_CASE("fft: ComplexPlan", "", etl::complex, etl::complex) { testComplexPlan>(); testComplexPlan>(); @@ -39,7 +39,7 @@ TEMPLATE_TEST_CASE("grit/fft: ComplexPlan", "", etl::complex, etl::comple testComplexPlan>(); } -TEMPLATE_TEST_CASE("grit/fft: ComplexPlanV2", "", etl::complex, etl::complex) +TEMPLATE_TEST_CASE("fft: ComplexPlanV2", "", etl::complex, etl::complex) { testComplexPlan>(); testComplexPlan>(); diff --git a/lib/grit/math/normalizable_range_test.cpp b/lib/grit/math/normalizable_range_test.cpp index 587acd7..4279967 100644 --- a/lib/grit/math/normalizable_range_test.cpp +++ b/lib/grit/math/normalizable_range_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/math: NormalizableRange", "", float, double) +TEMPLATE_TEST_CASE("math: NormalizableRange", "", float, double) { using Float = TestType; using Range = grit::NormalizableRange; diff --git a/lib/grit/math/power_test.cpp b/lib/grit/math/power_test.cpp index 7de9130..f3b6c04 100644 --- a/lib/grit/math/power_test.cpp +++ b/lib/grit/math/power_test.cpp @@ -31,7 +31,7 @@ TEMPLATE_TEST_CASE( REQUIRE(grit::power<3>(Int(3)) == 27); } -TEMPLATE_TEST_CASE("grit/math: power", "", float, double) +TEMPLATE_TEST_CASE("math: power", "", float, double) { using Float = TestType; diff --git a/lib/grit/math/static_lookup_table_test.cpp b/lib/grit/math/static_lookup_table_test.cpp index 5e3a8e0..12b14d1 100644 --- a/lib/grit/math/static_lookup_table_test.cpp +++ b/lib/grit/math/static_lookup_table_test.cpp @@ -7,7 +7,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/math: StaticLookupTable", "", float, double) +TEMPLATE_TEST_CASE("math: StaticLookupTable", "", float, double) { using Float = TestType; @@ -23,7 +23,7 @@ TEMPLATE_TEST_CASE("grit/math: StaticLookupTable", "", float, double) REQUIRE(lut.at(Float(128)) == Catch::Approx(126.0)); } -TEMPLATE_TEST_CASE("grit/math: StaticLookupTableTransform", "", float, double) +TEMPLATE_TEST_CASE("math: StaticLookupTableTransform", "", float, double) { using Float = TestType; diff --git a/lib/grit/unit/decibel_test.cpp b/lib/grit/unit/decibel_test.cpp index f1639a5..da09559 100644 --- a/lib/grit/unit/decibel_test.cpp +++ b/lib/grit/unit/decibel_test.cpp @@ -3,7 +3,7 @@ #include #include -TEMPLATE_TEST_CASE("grit/unit: toDecibels/fromDecibels", "", float, double) +TEMPLATE_TEST_CASE("unit: toDecibels/fromDecibels", "", float, double) { using Float = TestType; @@ -18,7 +18,7 @@ TEMPLATE_TEST_CASE("grit/unit: toDecibels/fromDecibels", "", float, double) REQUIRE(grit::toDecibels(grit::fromDecibels(Float(-12))) == Catch::Approx(Float(-12))); } -TEMPLATE_TEST_CASE("grit/unit: Decibels", "", float, double) +TEMPLATE_TEST_CASE("unit: Decibels", "", float, double) { using Float = TestType;