I've downloaded google test, but now I've no idea on how to link it to my project in eclipse. Should I add it as a source folder? Should include it as g++ included library? And how can I run test then?
|
feedback
|
|
Using Riga's excellent answer, here is a summary of how I got it to work:
Foo.h:
FooTest.cpp:
AllTests.cpp:
Here are the detailed steps:
| ||||
|
feedback
|
|
You should not add it to your source folder, make separate folder instead. This is for avoidance of dependency of your production code from testing project. Do it like this
I usually use google test as two files, this is very handy. Use In your test projectspecify include directories test/src/module1/class1Test.h:
test/src/mainTest.cpp:
| |||
|
feedback
|