Unit testing C++: What to test?
TL;DR
Introducing a (new) test method to a team [closed]
Closed 9 years ago.
unit/integration testing web service proxy client
I’m rewriting a PHP client/proxy library that provides an interface to a SOAP-based .Net webservice, and in the process I want to add some unit and integration tests so future modifications are less risky.
Where should I draw the line between unit tests and integration tests? Should they be separate?
I have a small MVC framework I’ve been working on. It’s code base definitely isn’t big, but it’s not longer just a couple of classes. I finally decided to take the plunge and start writing tests for it(yes, I know I should’ve been doing that all along, but it’s API was super unstable up until now)
As per IEEE 12207, who has to perform SW integration testing?
As per IEEE 12207, who has to perform Software integration testing (SOIPL): SW Testing team or SW Development team?
How to do external API testing (blackbox)
Assume you are using APIs from a vendor, how to make sure their API is working as expected?
How do I know if I have enough unit test coverage to remove an integration test?
I’m working on a legacy system (by that I mean it was written without tests). We’ve tried to test some of the system by writing integration tests that test functionality from the outside.
Should I refactor my unit tests when I extract a class out of the System Under Test?
I wrote this class that does a few things (perhaps this is a violation of the Single Responsibility Principle). I realize now that some other part of the project needs a piece of that logic and the way I’m going to expose it is to extract a class out of my original System Under Test.
Difference between functional test and integration test
I am deeply confused the difference. I’ve read so many definitions and they always explain functional test as testing the requirement is satisfied. Well, that’s just rephrasing the name functional test
. That doesn’t clarify the difference.
How to organize integration tests and test data for different environments when using Maven Failsafe
I have started to separate my unit tests from my integration tests by using Maven Surefire and Failsafe.