What is intermediate testing?

So, I heard about hardware and integration tests, but I recently heard about testing halfway. This term appears to be used most often in the context of AngularJS. There was very little information on this topic in a Google request. My questions about testing halfway are as follows:

  • How is it different from unit testing and integration?
  • What purpose does he fulfill?
  • What problems does he address that the other two approaches are not addressed?
  • Is this a specific AngularJS concept?
+8
javascript angularjs unit-testing integration-testing angularjs-e2e
source share
1 answer

From my own research, testing halfway seems to be unit testing, but with some automation there, to avoid having to make taunts or stubs for things like XHR requests. They call it โ€œin the middleโ€ to mean halfway between full โ€œend-to-endโ€ testing (for example, user testing) and unit test.

I only saw this name used with AngularJS, although the concept can certainly be applied to any package or library where an automatic layer was provided to avoid the need for stubs and jokes.

Read more here: Midway Testing

+7
source share

All Articles