I am working on an big project developped in C++Builder, that is using Classic compiler for Win32 plattform. This project has many modules (that have their own folder).
It has also many Lib directories. When I build this Project, there is no problem.
I am trying now to test one module.
For that, I created firs an unit test project then created an unit test cpp.
On this stage, when I compiled my unit test project, every things was fine.
Then I included in the unit test cpp the header file of the module (class) under test, so that I would be able the call the methodes of the class under test.
When I compiled my unit test project on this stage, I got bug notification: The header files that are included in the header file of the class under test cannot be opened.
I tried also to include the root folder of the whole project (in the include path option) in the unit test project. I still have the same problem.
I don't know what to do know.
Cann some one help please?
Thanks!