Hello awesome people!!
Two days ago, I found this awesome BDD style test framework for C++, but I have failed to have it discuss my tests. Could somebody guide me on how to set it up
My Test Runner looks like this:
#include <igloo/igloo.h>
using namespace igloo;
int main(int argc, char const *argv[]){
return TestRunner::RunAllTests(argc, argv);
}
and I am compiling it using a basic makefile whose contents are as below
all:
g++ testRunner.cpp -o tests
This is the output I get when I ran the executable

Any ideas on how to get around this setup please??? :-)
@Joakim Karlsson
I would much appreciate if I could get similar setup to what you you used for the game of life Kata. It was great using the rake command in vim and having tests run without stopping your work flow.