testing - Unit tests vs Functional tests -
what difference between unit tests , functional tests? can unit test test function?
unit test - testing individual unit, such method (function) in class, dependencies mocked up.
functional test - aka integration test, testing slice of functionality in system. test many methods , may interact dependencies databases or web services.
Comments
Post a Comment