Skip to content
Snippets Groups Projects
ListTest.cpp 787 B
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
                              ListTest.cpp  -  description
    
                                 -------------------
        begin                : Feb 15, 2014
    
        copyright            : (C) 2014 by Tomas Oberhuber et al.
    
        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;
    
    
    
    #include "../GtestMissingError.h"
    
    int main( int argc, char* argv[] )
    {
    
    #ifdef HAVE_GTEST
       ::testing::InitGoogleTest( &argc, argv );
       return RUN_ALL_TESTS();
    
       throw GtestMissingError();