Skip to content

Commit 413fab5

Browse files
committed
[gtest] replace TYPED_TEST_CASE with TYPED_TEST_SUITE due to TypedTestCaseIsDeprecated is deprecated
1 parent 1124526 commit 413fab5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/basic_interface_fft.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
template <typename T>
1919
class TransformAndInvert_FFT : public ::testing::Test {};
2020

21-
TYPED_TEST_CASE(TransformAndInvert_FFT, MyTypes);
21+
TYPED_TEST_SUITE(TransformAndInvert_FFT, MyTypes);
2222

2323
///////////////////////////////////////////////////////////////////////////////
2424
// Regular FFT (complex to complex)

test/basic_interface_hfft.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
template <typename T>
1919
class TransformAndInvert_hermFFT : public ::testing::Test {};
2020

21-
TYPED_TEST_CASE(TransformAndInvert_hermFFT, MyTypes);
21+
TYPED_TEST_SUITE(TransformAndInvert_hermFFT, MyTypes);
2222

2323

2424
///////////////////////////////////////////////////////////////////////////////

test/basic_interface_rfft.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
template <typename T>
1919
class TransformAndInvert_realFFT : public ::testing::Test {};
2020

21-
TYPED_TEST_CASE(TransformAndInvert_realFFT, MyTypes);
21+
TYPED_TEST_SUITE(TransformAndInvert_realFFT, MyTypes);
2222

2323

2424
///////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)