I've recently downloaded version 1.6.1 of CppUnit. I compiled, linked and ran one of the examples using Microsoft Visual Studio...no problems.
Then I decided to create a small test on my software which uses RogueWave libraries. As soon as I started using the CppUnit Framework, I started to get huge amounts of errors concerning IOSTREAM and others.
Has anybody managed to get the CppUnit Framework working with a project that uses RogueWave libraries.
All help appreciated,
Cheers,
Devinder
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-10-10
I don't usually use RW types in my tests, but I just added a RWDate and include <rw/rwdate.h> and my test compiled and ran just fine.
I'd guess you have a symbol definition problem with your includes, but I can't help more without more info.
Ted
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-10-11
I think the problem is that the CppUnit test framework relies on files like IOStream (without .h extension) whilst RogueWave relies on IOStream.h which seems to be part of the old standard.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've recently downloaded version 1.6.1 of CppUnit. I compiled, linked and ran one of the examples using Microsoft Visual Studio...no problems.
Then I decided to create a small test on my software which uses RogueWave libraries. As soon as I started using the CppUnit Framework, I started to get huge amounts of errors concerning IOSTREAM and others.
Has anybody managed to get the CppUnit Framework working with a project that uses RogueWave libraries.
All help appreciated,
Cheers,
Devinder
I don't usually use RW types in my tests, but I just added a RWDate and include <rw/rwdate.h> and my test compiled and ran just fine.
I'd guess you have a symbol definition problem with your includes, but I can't help more without more info.
Ted
I think the problem is that the CppUnit test framework relies on files like IOStream (without .h extension) whilst RogueWave relies on IOStream.h which seems to be part of the old standard.