What are the best mocking frameworks available on Linux?
-
I entered the unit testing world about a year ago and now my team and I start working with Linux. Which mocking framework do you think is the best for Linux and why? Thanks!
-
I entered the unit testing world about a year ago and now my team and I start working with Linux. Which mocking framework do you think is the best for Linux and why? Thanks!
Welcome to codeproject. I don't know. Here's a Software Test joke instead of an answer:
A senior software tester and a entry level tester went into the company cafeteria and sat down. The senior employee removed a tuna sandwich from an old brown bag. The entry level tester promptly removed a ham sandwich from his man-purse.
Then a security guard noticed that these employees were breaking the rules and quickly came over to the table. "The company rules clearly state that you cannot bring your own lunch to the cafeteria!" the guard exclaimed.
The senior tester looked at the security guard, then shrugged his shoulders and exchanged sandwiches with the entry level tester. "I found a loophole in the company rule." he commented with his mouth full.
Maybe someone with more test experience will answer your question. You might get greater visibility by posting your question in the 'Quick Answers' section. Best Wishes, -David Delaune
-
I entered the unit testing world about a year ago and now my team and I start working with Linux. Which mocking framework do you think is the best for Linux and why? Thanks!
All my code is C so unity, ceedling and cmock and it's irrelevent if it's linux, windows or embedded code. At the end of the day you are testing the code not the compiler implementation and optimizations of the code. There is a pretty good background to it all at Throwtheswitch.org[^] There are also forums there if you need to ask questions.
In vino veritas
-
I entered the unit testing world about a year ago and now my team and I start working with Linux. Which mocking framework do you think is the best for Linux and why? Thanks!
-
The company I work for started using Isolator++ for Linux and it seems to work so far pretty well
Nice! What are their mocking abilities?
-
Nice! What are their mocking abilities?
-
you can mock and fake almost everything, any kind of methods, fields, behaviors, interfaces, dependencies, Instances, and more.
Sounds great, thanks!