What is red box, yellow box and green box testing?
I can find many explanations on difference between black box and white box testing, but couldn't find any better explanation on Red box, Yellow box an开发者_如何转开发d Green box testing.
Can someone please explain these types of testing terms? Examples will be appreciated.
Thanks in advance.
There are different colors of testing and techniques in Software Testing:
- White Box = Unit and Integration testing
Black Box = The following techniques:
- BVA (Boundary Value Analysis)
- ECP (Equivalence Class Partitioning)
- Decision Tables
- STF (State Transition flows)
- Error Guessing
Yellow Box = Acceptance testing
- Green Box = Release testing
- Gray Box = Maintenance testing
Red box testing is User Acceptance Testing. Yellow Box testing is to test the Warning or Alert messages.
Google has one result, several alternatives
http://www.testrepublic.com/forum/topics/define-red-box-testing-yellow
Acceptance testing, often referred to as Red-Box testing. Simply yellow box testing is checking against the warning messages. The system properly throwing the warning messages or not?
Red Box Testing: Also referred as acceptance testing. in which user/client apply any technique like black box testing, white box testing and gray box testing to accept the project.
Yellow Box Testing: check against warning messages that weather the system throws the warning messages or not.
Green Box Texting: takes the external perspective of the test objective to derive the test cases.
It is a testing done by the customer or end-user wherein they will use the software for real time business scenario for some period of time and check how well the software can handle the real time business work flow
As per my experience, I found:
Red Box Testing: When you are testing the application/product in Red area is known as Red Box Testing.
Yellow Box Testing: When you are testing the application/product in Yellow garden area is known as Red Box Testing.
Green Box Testing: The combination of front box testing and back box testing is known as Green Box testing.
精彩评论