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 ...
5
votes
2answers
2k views
How to test an API?
In an interview, whether for developer positions or white-box qa positions, you are ofter asked to:
create test cases for a piece of code / API
categorize each test i.e. functional, stress, load, ...
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?
1
vote
3answers
362 views
How to plan for whitebox testing
I'm relatively new to the world of WhiteBox Testing and need help designing a test plan for 1 of the projects that i'm currently working on. At the moment i'm just scouting around looking for testable ...
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
99 views
what is Unit testing, Black-box testing and white box testing?
The question looks very childish right? i googled but all the explanation i found was very technical so can anyone answer the above question in a simple way with the appropriate example. thanks
0
votes
2answers
121 views
Object reference not set to an instance of an object
Hello am calling from a class to test my product however i keep getting this error:
"Object reference not set to an instance of an object."
Testing:
global::OfficeSystem.Employees employees = new ...
0
votes
0answers
98 views
Can this [HTML tokenization/automatic template generation] be broken?
Consider the below HTML string
<p>This is a paragraph tag</p> <font>This is a font tag</font> <div>This is a div tag</div> <span>This is a span ...
0
votes
1answer
32 views
what is the best tool for unit test in VB?
have to check some formulae whether they are providing correct result, these formula are written part of a VB program, what is the best tool\method to unit test these formula?
0
votes
0answers
146 views
whitebox test cases for following method
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]] > ...