1

我有一个有两个基本异常类的项目;两者具有相同的名称,只有方法/成员不同(一个有一个返回消息的方法,另一个只有一个字符串成员,可以访问它以获取有关异常的信息)。

我正在使用 CPPUNIT 进行测试,在框架中有 TestAssert.hpp 文件,其中包含每个断言的宏(CPPUNIT_ASSERT_NO_THROW 等)。我已经修改添加了另一个宏来测试测试类中包含哪些异常标头,这样我就可以捕获我的基本异常;宏看起来像这样:

#ifdef BASE_EXCEPTION_CLASS_ONE_HPP
#define MY_CPPUNIT
catch (BaseException &ex) {
ex.getMessage();
}
#endif
#ifdef BASE_EXCEPTION_CLASS_TWO_HPP
#define MY_CPPUNIT
catch (BaseException &ex) {
cout << "Caught: " ex.comment <<endl;
}
#endif

然后将在 TestAssert.h 中像这样使用这两个宏

/** Asserts that the given expression does not throw any exceptions.
 * \ingroup Assertions
 * Example of usage:
 * \code
 *   std::vector<int> v;
 *   v.push_back( 10 );
 *  CPPUNIT_ASSERT_NO_THROW( v.at( 0 ) );
 * \endcode
 */
# define CPPUNIT_ASSERT_NO_THROW( expression )                             \
   try {                                                                   \
      expression;                                                          \
   } catch ( const std::exception &e ) {                                   \
      CPPUNIT_NS::Message message( "Unexpected exception caught" );        \
      message.addDetail( "Type: " +                                        \
                   CPPUNIT_EXTRACT_EXCEPTION_TYPE_( e,                     \
                                       "std::exception or derived" ) );    \
      message.addDetail( std::string("What: ") + e.what() );               \
      CPPUNIT_NS::Asserter::fail( message,                                 \
                                  CPPUNIT_SOURCELINE() ); }                \
    MY_CPPUNIT                                                             \
    catch ( ... ) {                                                        \
      CPPUNIT_NS::Asserter::fail( "Unexpected exception caught",           \
                                  CPPUNIT_SOURCELINE() );                  \
   }

这有效,但前提是在测试类中的第一个 #include 是 #include "test.hpp"

那么,宏扩展如何受到包含顺序的影响,或者我怎么能看到预处理部分以便我能以某种方式弄清楚呢?

非常感谢!

4

1 回答 1

0

您可以使用gcc -E来查看预处理器之后的输出。这包括所有扩展的宏,并让您查看宏扩展会发生什么。如果问题最初出现在某个宏中,您还可以在第二步中编译该文件并获得更好的错误报告。

于 2013-04-18T02:27:08.690 回答