Please enable JavaScript.
Coggle requires JavaScript to display documents.
AOUT I - Coggle Diagram
AOUT I
-
-
-
UOW
Sum of Actions that take place between an invokation of a public method in the system and a single noticeable END RESULT that can be observed without looking at the intern state of the system and only through its public API and behaviour
Integration Testing
testing a UOW without having full control over all of it using on or more of its real dependencies such as time, network, DB, threads, random number generators and son on
-
Unit Test
is
-
that invokes the unit of work being tested, and then checks some assumptions about a single end result of that unit.
-
It can be written easily and runs quickly. It’s trustworthy, readable, and maintainable. It’s consistent in its results as long as production code hasn’t changed
-
-