Merge branch 'flat_combinig_add_stress_and_unint_tests' of https://github.com/mgalimu...
[libcds.git] / test / unit / intrusive-list / test_intrusive_list_hp.h
index b5a95814593a7210f08e414de9bf27d828b50e12..f91cfcce4de21bb75a86e569973cd7584171dad7 100644 (file)
@@ -1,11 +1,11 @@
 /*
     This file is a part of libcds - Concurrent Data Structures library
 
-    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
+    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
 
     Source code repo: http://github.com/khizmax/libcds/
     Download: http://sourceforge.net/projects/libcds/files/
-    
+
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions are met:
 
@@ -25,7 +25,7 @@
     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
+    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 #ifndef CDSUNIT_LIST_TEST_INTRUSIVE_LIST_HP_H
 #define CDSUNIT_LIST_TEST_INTRUSIVE_LIST_HP_H
@@ -55,7 +55,7 @@ namespace cds_test {
 
             typedef typename List::guarded_ptr guarded_ptr;
 
-            ASSERT_TRUE( l.empty() );
+            ASSERT_TRUE( l.empty());
             ASSERT_CONTAINER_SIZE( l, 0 );
 
             guarded_ptr gp;
@@ -73,7 +73,7 @@ namespace cds_test {
                 ASSERT_FALSE( !gp );
                 EXPECT_EQ( gp->nKey, i.nKey );
                 EXPECT_EQ( gp->nVal, i.nVal );
-                gp = l.get_with( other_item( i.nKey ), other_less() );
+                gp = l.get_with( other_item( i.nKey ), other_less());
                 ASSERT_FALSE( !gp );
                 EXPECT_EQ( gp->nKey, i.nKey );
                 EXPECT_EQ( gp->nVal, i.nVal );
@@ -90,21 +90,21 @@ namespace cds_test {
 
                 gp = l.extract( i );
                 EXPECT_TRUE( !gp );
-                gp = l.extract_with( other_item( i ), other_less() );
+                gp = l.extract_with( other_item( i ), other_less());
                 EXPECT_TRUE( !gp );
             }
 
-            ASSERT_TRUE( l.empty() );
+            ASSERT_TRUE( l.empty());
             ASSERT_CONTAINER_SIZE( l, 0 );
 
             List::gc::force_dispose();
             for ( auto const& i : arr ) {
                 EXPECT_EQ( i.s.nDisposeCount, 1 );
-                EXPECT_FALSE( l.contains( i ) );
+                EXPECT_FALSE( l.contains( i ));
             }
         }
     };
 
 } // namespace cds_test
 
-#endif // CDSUNIT_LIST_TEST_INTRUSIVE_LIST_HP_H 
+#endif // CDSUNIT_LIST_TEST_INTRUSIVE_LIST_HP_H