I get this error, but I don't know how to fix it.
I'm using Visual Studio 2013. I made the solution name MyProjectTest
This is the structure of my test solution:
-function.h
#ifndef MY_FUNCTION_H
#define MY_FUNCTION_H
…
I have a string array and one string. I'd like to test this string against the array values and apply a condition the result - if the array contains the string do "A", else do "B".
How can I do …
I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java using JUnit but …