diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 18:53:12 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 19:27:51 +1000 |
commit | 0b16b338de40ccb8c53282a2eb8c6cf7a95cc105 (patch) | |
tree | 813a53ba148ac44f7caa9285334e4049df2972c2 | |
parent | 8becd40f030b94fe3fb6ad82b048ee97daaea2b1 (diff) |
osl: condition qa remove extraneous comments
Change-Id: I2db888e3260543563d8c6ea5b0575e46e98df9d7
-rw-r--r-- | sal/qa/osl/condition/osl_Condition.cxx | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/sal/qa/osl/condition/osl_Condition.cxx b/sal/qa/osl/condition/osl_Condition.cxx index 6d0245d2905b..326d19121c09 100644 --- a/sal/qa/osl/condition/osl_Condition.cxx +++ b/sal/qa/osl/condition/osl_Condition.cxx @@ -17,8 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -// include files - #include <osl_Condition_Const.h> #include <stdlib.h> @@ -59,11 +57,8 @@ protected: } }; -// test code start here - namespace osl_Condition { - /** testing the method: Condition() */ @@ -95,7 +90,7 @@ namespace osl_Condition CPPUNIT_TEST( ctors_001 ); CPPUNIT_TEST( ctors_002 ); CPPUNIT_TEST_SUITE_END( ); - }; // class ctors + }; /** testing the method: void set() @@ -142,7 +137,7 @@ namespace osl_Condition CPPUNIT_TEST( set_001 ); CPPUNIT_TEST( set_002 ); CPPUNIT_TEST_SUITE_END( ); - }; // class set + }; /** testing the method: void reset() @@ -192,7 +187,7 @@ namespace osl_Condition CPPUNIT_TEST( reset_001 ); CPPUNIT_TEST( reset_002 ); CPPUNIT_TEST_SUITE_END( ); - }; // class reset + }; /** testing the method: Result wait(const TimeValue *pTimeout = 0) @@ -208,7 +203,6 @@ namespace osl_Condition tv1 = new TimeValue; tv1->Seconds = 1; tv1->Nanosec = 0; - } void tearDown( ) override @@ -264,7 +258,7 @@ namespace osl_Condition CPPUNIT_TEST( wait_001 ); CPPUNIT_TEST( wait_002 ); CPPUNIT_TEST_SUITE_END( ); - }; // class wait + }; /** testing the method: sal_Bool check() @@ -314,13 +308,13 @@ namespace osl_Condition CPPUNIT_TEST( check_001 ); CPPUNIT_TEST( check_002 ); CPPUNIT_TEST_SUITE_END( ); - }; // class check + }; -CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::ctors); -CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::set); -CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::reset); -CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::wait); -CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::check); + CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::ctors); + CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::set); + CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::reset); + CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::wait); + CPPUNIT_TEST_SUITE_REGISTRATION(osl_Condition::check); } // namespace osl_Condition |