Show
Ignore:
Timestamp:
12/24/06 07:27:43 (2 years ago)
Author:
cneumann
Message:

Added copyright headers,
wrapped test contents in SUITEs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/Base/Base/OSGFixedTest.cpp

    r264 r457  
    4545// test should compile and maybe some checking of the computations can be done. 
    4646 
    47 namespace { 
     47SUITE(FixedTests) 
     48
    4849 
    4950#define OSG_FIXED32_TEST(VDest, VOp1, VOp2) \ 
     
    5758    VDest = VOp2 / VOp1; 
    5859 
    59 TEST(Fixed32_Interoperability) 
     60TEST(Interoperability) 
    6061{ 
    6162    OSG::Fixed32 f32a; 
     
    7980    // Most of the next lines fail to compile because of ambigous 
    8081    // constructor calls or missing operator overloads :( 
    81      
     82 
    8283//     OSG_FIXED32_TEST(f32a, f32b, i8); 
    8384//     OSG_FIXED32_TEST(f32a, f32b, ui8); 
     
    9091//     OSG_FIXED32_TEST(f32a, f32b, r32); 
    9192//     OSG_FIXED32_TEST(f32a, f32b, r64); 
    92      
    93     // Make this test fail unconditonally as a remainder that the above should 
     93 
     94    // Make this test fail unconditonally as a reminder that the above should 
    9495    // work. 
    9596    CHECK(false); 
    9697} 
    9798 
    98 } // namespace 
     99} // SUITE