Skip to content
Snippets Groups Projects
ListTest.cpp 763 B
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
                              tnlListTest.cpp  -  description
                                 -------------------
        begin                : Feb 15, 2014
        copyright            : (C) 2014 by Tomas Oberhuber
        email                : tomas.oberhuber@fjfi.cvut.cz
     ***************************************************************************/
    
    
    /* See Copyright Notice in tnl/Copyright */
    
    #ifdef HAVE_GTEST 
    
    #include <gtest/gtest.h>
    
    #include <TNL/Containers/List.h>
    
    
    using namespace TNL;
    
    #ifdef HAVE_GTEST 
    #endif
    
    
    
    int main( int argc, char* argv[] )
    {
    
    #ifdef HAVE_GTEST
       ::testing::InitGoogleTest( &argc, argv );
       return RUN_ALL_TESTS();
    
    #else
       return EXIT_FAILURE;
    #endif
    }