I guess, that's a linking problem. If I compile it manually and then link all the .o files, it works.
cd code
g++ -c src/libmoney/Money.cpp -I include
g++ -c src_test/libmoney_test/MoneyTest.cpp -I include_test -I include
g++-c src_test/app/run_tests.cpp -lcppunit
g++ -o run_tests Money.o MoneyTest.o run_tests.o -lcppunit
Running that shows, that one test was executed:
I guess, that's a linking problem. If I compile it manually and then link all the .o files, it works.
Running that shows, that one test was executed: