Testing for Beginners
blog.enoughtobedanger.us
Testing for Beginners
1–5 of 5 posts
Re: Testing for Beginners
#2Re: Testing for Beginners
#3Re: Testing for Beginners
#4By the way, in the first example you have "should be able to subtract (1-1)" (not verbatim) but is 2-1 in code
Re: Testing for Beginners
#5Integration tests, to me, provide value by making a space to brainstorm "what if" questions around corner cases of interactions between components. Testing the "happy path" provides confidence that all the individual assumptions aren't inconsistent as a whole.
Functional tests, for me, provide a way to think about "well, this is what we built, and it's internally correct, but is it what will fit the needs of our users?" I would also differentiate between end-to-end scenario testing, and discrete testing of a single unit of functionality. An example of the former would be the signup process, while the latter might be making changes in a preferences configuration screen.
I think it would be worthwhile to also discuss "tenet" testing, such as Performance, Accessibility, Localization/Internationalization, Failover/Rollover, Security.