We have currently installed our tests on Travis Ci using the CMakes Integrated CTest, which simply checks to see int main()if anything else than 0 returns .
Now we would like to add testing functionality to our automated window assemblies in Appveyor, while maintaining this simple check of the return value.
In each Appveyors testing analytic release that we have found so far, it is assumed that we use some kind of testing platform, such as MSTest, which we are not going to do.
I found out that you can run your own CMD and Powershell test scripts in Appveyor, which sounds like the perfect way to test the return value of our test.
Unfortunately, we are all quite inexperienced using CMD and Powershell, and have no idea how to achieve this.
For reference, this is the project in question: JNF_NEAT
source
share