Show
Ignore:
Timestamp:
11/25/09 12:14:38 (15 years ago)
Author:
mido
Message:

ASTYLER RUN OVER THE WHOLE LIBRARY, JUPEE

Location:
library/tests/unittest-cpp
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/tests/unittest-cpp/TestRunner.cpp

    r736 r737  
    7171 
    7272void TestRunner::ClearEnvironment() const { 
    73         bdm::RV::clear_all();    
     73        bdm::RV::clear_all(); 
    7474} 
    7575 
  • library/tests/unittest-cpp/TestRunner.h

    r736 r737  
    3131 
    3232                while ( curTest != 0 ) { 
    33                         if ( IsTestInSuite ( curTest, suiteName ) && predicate ( curTest ) ) 
    34                         { 
     33                        if ( IsTestInSuite ( curTest, suiteName ) && predicate ( curTest ) ) { 
    3534                                ClearEnvironment(); 
    3635                                RunTest ( m_result, curTest, maxTestTimeInMs ); 
     
    5150        int Finish() const; 
    5251        bool IsTestInSuite ( const Test* const curTest, char const* suiteName ) const; 
    53         void RunTest ( TestResults* const result, Test* const curTest, int const maxTestTimeInMs ) const;        
     52        void RunTest ( TestResults* const result, Test* const curTest, int const maxTestTimeInMs ) const; 
    5453        void ClearEnvironment() const; 
    5554};