ccspec
ccspec copied to clipboard
C++'s RSpec: macro-free TDD and BDD power for C++11.
How to use this without Biicode?
Sometimes it's more readable to say ``` C++ expect(...).to(be(true)) expect(...).to(be(false)) ``` than to say ``` C++ expect(...).to(be_truthy) expect(...).to(be_falsey) ``` When we are sure that the subject must be true (1)...
We'd like to have the ability to expect the throwing of an C++ exception in CCSpec tests. We'd also like to reuse the usual `expect(...).to(...)` syntax: ``` C++ expect([] {...
Currently all our text output onto the console are in the console's default color:  We would like have the ability to output...