Commit d7008360 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Update TYPED_TEST_CASE -> TYPED_TEST_SUITE

See #25
parent 5f533e21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ protected:
// types for which ArrayTest is instantiated
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 )
{
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ using ArrayTypes = ::testing::Types<
#endif
>;

TYPED_TEST_CASE( ArrayTest, ArrayTypes );
TYPED_TEST_SUITE( ArrayTest, ArrayTypes );


TYPED_TEST( ArrayTest, constructors )
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ using ViewTypes = ::testing::Types<
#endif
>;

TYPED_TEST_CASE( ArrayViewTest, ViewTypes );
TYPED_TEST_SUITE( ArrayViewTest, ViewTypes );


TYPED_TEST( ArrayViewTest, constructors )
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ using DistributedArrayTypes = ::testing::Types<
#endif
>;

TYPED_TEST_CASE( DistributedArrayTest, DistributedArrayTypes );
TYPED_TEST_SUITE( DistributedArrayTest, DistributedArrayTypes );

TYPED_TEST( DistributedArrayTest, checkSumOfLocalSizes )
{
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ using DistributedVectorTypes = ::testing::Types<
#endif
>;

TYPED_TEST_CASE( DistributedVectorTest, DistributedVectorTypes );
TYPED_TEST_SUITE( DistributedVectorTest, DistributedVectorTypes );

TYPED_TEST( DistributedVectorTest, max )
{
Loading