-5

Hi everyone my question is not about programming. Rather it is on software development plans. Can someone explain these 2 to me am getting a bit of confusion:

 White box testing
 Blackbox testing

Also it would be appreciated if someone gives me some examples about these two. Thanks.

Ben
  • 1,414
  • 2
  • 13
  • 18
  • Welcome to StackOverflow. You're being downvoted not only because this question is better to ask at programmers.stackexchange.com, but also because the precise answer to your question is easily accessible by simply googling the heading of your question. Such questions don't belong to StackOverflow or any other site in the StackExchange network. – gvlasov Apr 02 '16 at 13:33
  • Please read [How to ask a good question](https://stackoverflow.com/help/how-to-ask). If you googled and still don't understand the difference, you should include in your question what part of the definition you don't understand (e.g. "I read white box testing is this, and black box testing is that, but isn't this actually the same thing?") and phrase the title of your question accordingly. – gvlasov Apr 02 '16 at 13:33
  • 2
    I'm voting to close this question as off-topic because it is not about programming, as stated in the question itself. – Pang Apr 04 '16 at 04:32

3 Answers3

0
  • White box testing is the name of the united tests like Junit (Framework). This type of testing check internal structures and workings of your code.

  • Blackbox testing is the name that receive functional test like Automated Blackboxing Testing (Framework) ; analyzed the functionality of the code but not its structure.

Hope it helps!

Jessica
  • 119
  • 5
  • You're wrong that JUnit is used only for white box testing. There is nothing stopping JUnit user from writing black box tests. – gvlasov Apr 02 '16 at 13:37
  • And there is no such thing as "Automated Blackboxing Testing (Framework)" – gvlasov Apr 02 '16 at 13:38
  • For more information about "Automated Testing Framework" you could look: https://en.wikipedia.org/wiki/Automated_Testing_Framework or http://stackoverflow.com/questions/9123173/automated-testing-framework for example. – Jessica Apr 03 '16 at 09:04
0

Black box testing is the testing process when testers test a software/application manually covering its functionalities and user experience in a naked eye. There is no access of source code to the testers in case of black box testing. White box testing is the process when tester test an application/software including code besides manual testing. Unit test is a part of white box testing. Tester has access on both code and application in case of white box testing.

Shadman Jahangir
  • 70
  • 1
  • 1
  • 7
0

The black box testers only look at the Application from the outside and check whether all the modules are working fine as expected.

White box testers ensure to take a deep dive into the internal architecture and reusable code to check whether all the Aplication parts are working fine.

umesh kumar
  • 3
  • 1
  • 4