Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 1 and Version 2 of Projects/GSoC/TestingReview/CxxTest


Ignore:
Timestamp:
07/07/12 01:04:56 (12 years ago)
Author:
Xiaochen Pan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Projects/GSoC/TestingReview/CxxTest

    v1 v2  
    22
    33
    4 CxxTest is a unit testing framework in C++ with xUnit architecture. For example, it supports modern tests concept like test cases, test suites, and test fixtures. Also, it supports the standard XML output. It is easy to compile and highly portable because no pre-compiled library is used. It is well suited for Host-based testing. CxxTest support automatic test runner generation and independent test cases running. It supports mocking functions and mocking objects. As a plus point, it supports python scripts. However, it does not support C macros preprocessing, which has limit it largely in RTEMS based testing.
     4CxxTest is a unit testing framework in C++. It can be used for host-based testing. Because it does not support C macros preprocessing, which has limit it largely in RTEMS based testing.
     5
     6+ CxxTest supports  xUnit architecture with test cases, test fixtures and test suites.
     7
     8+ It supports the standard XML output.
     9
     10+ It is easy to compile and highly portable because no pre-compiled library is used.
     11
     12+ CxxTest support automatic test runner generation and independent test cases running.
     13
     14+ It supports mocking functions and mocking objects.
     15
     16+ It supports python scripts.