开发者_StackOverflow
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this questionFor an upcoming interview, I've been asked to be prepared to write test programs, and to be able to classify my tests as: border cases, stress, security, or error checking.
I'm a little unclear on what is meant by these terms. If anybody could provide any insight that would be great. Googling isn't turning up much info so I'm assuming that these are not official terms.
Thanks in advance!
Most common term for "border cases" is "boundary testing". This is a good intro to black box testing which will give you more vocab to Google from: http://www.cs.nott.ac.uk/~cah/G53QAT/G53QAT09pdf6up.pdf
I'm not familiar with the term "error checking" -- I guess it refers to testing error handling, but I may be wrong. See http://testingcorner.blogspot.com/2009/01/what-is-error-handling-testing.html
For the rest, just add "testing" and Google:
http://en.wikipedia.org/wiki/Stress_testing
http://en.wikipedia.org/wiki/Security_testing
精彩评论