Skip to content
Snippets Groups Projects
Commit d7008360 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Update TYPED_TEST_CASE -> TYPED_TEST_SUITE

See #25
parent 5f533e21
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ protected: ...@@ -32,7 +32,7 @@ protected:
// types for which ArrayTest is instantiated // types for which ArrayTest is instantiated
using ValueTypes = ::testing::Types< short int, int, long, float, double >; using ValueTypes = ::testing::Types< short int, int, long, float, double >;
TYPED_TEST_CASE( ArrayOperationsTest, ValueTypes ); TYPED_TEST_SUITE( ArrayOperationsTest, ValueTypes );
TYPED_TEST( ArrayOperationsTest, allocateMemory_host ) TYPED_TEST( ArrayOperationsTest, allocateMemory_host )
{ {
......
...@@ -139,7 +139,7 @@ using ArrayTypes = ::testing::Types< ...@@ -139,7 +139,7 @@ using ArrayTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( ArrayTest, ArrayTypes ); TYPED_TEST_SUITE( ArrayTest, ArrayTypes );
TYPED_TEST( ArrayTest, constructors ) TYPED_TEST( ArrayTest, constructors )
......
...@@ -142,7 +142,7 @@ using ViewTypes = ::testing::Types< ...@@ -142,7 +142,7 @@ using ViewTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( ArrayViewTest, ViewTypes ); TYPED_TEST_SUITE( ArrayViewTest, ViewTypes );
TYPED_TEST( ArrayViewTest, constructors ) TYPED_TEST( ArrayViewTest, constructors )
......
...@@ -69,7 +69,7 @@ using DistributedArrayTypes = ::testing::Types< ...@@ -69,7 +69,7 @@ using DistributedArrayTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( DistributedArrayTest, DistributedArrayTypes ); TYPED_TEST_SUITE( DistributedArrayTest, DistributedArrayTypes );
TYPED_TEST( DistributedArrayTest, checkSumOfLocalSizes ) TYPED_TEST( DistributedArrayTest, checkSumOfLocalSizes )
{ {
......
...@@ -112,7 +112,7 @@ using DistributedVectorTypes = ::testing::Types< ...@@ -112,7 +112,7 @@ using DistributedVectorTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( DistributedVectorTest, DistributedVectorTypes ); TYPED_TEST_SUITE( DistributedVectorTest, DistributedVectorTypes );
TYPED_TEST( DistributedVectorTest, max ) TYPED_TEST( DistributedVectorTest, max )
{ {
......
...@@ -92,7 +92,7 @@ using VectorTypes = ::testing::Types< ...@@ -92,7 +92,7 @@ using VectorTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( MultireductionTest, VectorTypes ); TYPED_TEST_SUITE( MultireductionTest, VectorTypes );
TYPED_TEST( MultireductionTest, scalarProduct ) TYPED_TEST( MultireductionTest, scalarProduct )
{ {
......
...@@ -143,7 +143,7 @@ using VectorTypes = ::testing::Types< ...@@ -143,7 +143,7 @@ using VectorTypes = ::testing::Types<
#endif #endif
>; >;
TYPED_TEST_CASE( VectorTest, VectorTypes ); TYPED_TEST_SUITE( VectorTest, VectorTypes );
TYPED_TEST( VectorTest, max ) TYPED_TEST( VectorTest, max )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment