views:

22

answers:

0

I'm trying to write a library which unzips a zip file contents to an existing directory, replacing the content of only the folders which exist in the zip file.

In order to do this I am employing the use of the Boost Unit Testing framework.

Before each test I wish make a copy of an existing directory, the copy of which will serve as the baseline for my tests, before each test this directory will be deleted and re-copied from the existing directory, so that each of the tests may make use of it.

Since I am unfamiliar with the general development directory structure of Visual C++/Boost programs I was wondering where the standard location for a directory used over and over in unit tests would be; considering the answer to my previous question though, I'm concerned that there might not actually be an answer to this question.