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

Fixed tests for DistributedArray

parent 6c37ac30
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -276,13 +276,13 @@ TYPED_TEST( DistributedArrayTest, containsOnlyValue )
   EXPECT_TRUE( this->distributedArray.containsOnlyValue( 100 ) );
}

TYPED_TEST( DistributedArrayTest, boolOperator )
TYPED_TEST( DistributedArrayTest, empty )
{
   EXPECT_GT( this->distributedArray.getSize(), 0 );
   EXPECT_TRUE( this->distributedArray );
   EXPECT_FALSE( this->distributedArray.empty() );
   this->distributedArray.reset();
   EXPECT_EQ( this->distributedArray.getSize(), 0 );
   EXPECT_FALSE( this->distributedArray );
   EXPECT_TRUE( this->distributedArray.empty() );
}

#endif  // HAVE_GTEST