Search code examples
c++rubyautomated-testsrspectest-framework

Use rspec to test C/C++ program


Is Rspec ruby/rails specific? Is it possible to use it as a test framework for C/C++ program?


Solution

  • Description of Rspec says:

    RSpec is the original Behaviour Driven Development framework for Ruby.

    I think that means this tool is Ruby specific. For c++ you could use Boost Test Library or other tools.