Show
Ignore:
Timestamp:
08/05/09 14:40:03 (15 years ago)
Author:
mido
Message:

panove, vite, jak jsem peclivej na upravu kodu.. snad se vam bude libit:) konfigurace je v souboru /system/astylerc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/unittest-cpp/TestResults.h

    r418 r477  
    77class TestDetails; 
    88 
    9 class TestResults 
    10 { 
     9class TestResults { 
    1110public: 
    12     explicit TestResults(TestReporter* reporter = 0); 
     11        explicit TestResults ( TestReporter* reporter = 0 ); 
    1312 
    14     void OnTestStart(TestDetails const& test); 
    15     void OnTestFailure(TestDetails const& test, char const* failure); 
    16     void OnTestFinish(TestDetails const& test, float secondsElapsed); 
     13        void OnTestStart ( TestDetails const& test ); 
     14        void OnTestFailure ( TestDetails const& test, char const* failure ); 
     15        void OnTestFinish ( TestDetails const& test, float secondsElapsed ); 
    1716 
    18     int GetTotalTestCount() const; 
    19     int GetFailedTestCount() const; 
    20     int GetFailureCount() const; 
     17        int GetTotalTestCount() const; 
     18        int GetFailedTestCount() const; 
     19        int GetFailureCount() const; 
    2120 
    2221private: 
    23     TestReporter* m_testReporter; 
    24     int m_totalTestCount; 
    25     int m_failedTestCount; 
    26     int m_failureCount; 
     22        TestReporter* m_testReporter; 
     23        int m_totalTestCount; 
     24        int m_failedTestCount; 
     25        int m_failureCount; 
    2726 
    28     bool m_currentTestFailed; 
     27        bool m_currentTestFailed; 
    2928 
    30     TestResults(TestResults const&); 
    31     TestResults& operator =(TestResults const&); 
     29        TestResults ( TestResults const& ); 
     30        TestResults& operator = ( TestResults const& ); 
    3231}; 
    3332