Tagged Questions

10
votes
10answers
5k views

Black box vs White box Testing

Which type of testing would you say should be the emphasis (for testers/QAs), and why? A quick set of definitions from wikipedia: Black box testing takes an external perspective of the test ...
3
votes
3answers
419 views

What is black box testing and white box testing

I'm trying to understand one in terms of how it compares to the other. Is white box testing where you can see the code and black box testing where you don't look at the code?
2
votes
3answers
2k views

Control flow graph & cyclometric complexity for folowing procedure

insertion_procedure (int a[], int p [], int N) { int i,j,k; for (i=0; i<=N; i++) p[i] = i; for (i=2; i<=N; i++) { k = p[i]; j = 1; while (a[p[j-1]] > ...
2
votes
6answers
297 views

Should I use “glass box” testing when it leads to *fewer* tests?

For example, I'm writing tests against a CsvReader. It's a simple class that enumerates and splits rows of text. Its only raison d'ĂȘtre is ignoring commas within quotes. It's less than a page. By ...
0
votes
0answers
31 views

Choosing black box testing over white box testing

In what situations would you choose black box over white box? Examples? Would a certain program ever benefit from one over another?
0
votes
2answers
61 views

Unit test 'structure' of method?

Sorry for the long post... While being introduced to a brown field project, I'm having doubts regarding certain sets of unit tests and what to think. Say you had a repostory class, wrapping a stored ...
0
votes
3answers
155 views

should unit tests be black box tests or white box tests?

Say I have three methods, all very similar but with different input types: void printLargestNumber(int a, int b) { ... } void printLargestNumber(double a, double b) { ... } void ...