Hi, Am 01.08.2013 23:50, schrieb Thorsten Lajewski:
let's say I use a new feature branch for my new feature (of course). There I will still have to put my testing code somewhere. Probably this will not be any code which can be tested using the unit test, because it's hardware dependent for example. In order to test my code I would write a file containing a main function. And because the development of this specific feature would take some time, I would be glad to save it in the git branch.
1. I can't place it, where the rest of the code belongs. (It's not a part of the lib) 2. I can't place it, in a test folder (these are reserved for the unit tests) 3. I can't place it in an example folder, because it does not belong there.
So you still have not answered, where the place to put this kind of code would be.
There is a top level folder called "tests". And it contains, you might already have guest it, tests. Why not put it there? Cheers, Fabian