#include<cxxtest/TestSuite.h>#include"common/math.h"classMathTestSuite:publicCxxTest::TestSuite{public:voidtest_intLog2(){// Test special case for 0TS_ASSERT_EQUALS(Common::intLog2(0),-1);// intLog2 should round the result towards 0TS_ASSERT_EQUALS(Common::intLog2(7),2);// Some simple test for 2^10TS_ASSERT_EQUALS(Common::intLog2(1024),10);}};