I got a couple of *.o files, which have defined functions, and will be used as library in the future. I need to do the unit test for those functions.
I have linked those *.o files in my testing environment(Eclipse, Linux, Google Test),so, my questions are:
- Do I need to do any other extra configurations in order to test those functions?
- How can i see the function name and arguments? Or i need to ask the developer who developed this library?
- How can I call the function inside those *.o object files? Do I need to link them into a static library o dynamic library first? But I don't have the privilege to access those source codes.
Thanks a lot.