Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
2
votes
3answers
63 views

PHPUnit: Doing assertions on non-public variables

Suppose I have a class with a private property and associated public getter and setter. I want to test with PHPUnit that the property gets the correct value after the setter has been used or that the ...
2
votes
6answers
148 views

Unwanted white areas on HTML page

I've made a site using with a CSS made from scratch. The Page The CSS Randomly there are unwanted white spaces in two places: Above the main content area (below the menu bar). Below the main ...
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 ...
1
vote
3answers
65 views

White 100% box CSS issue with vertical scroll

So I am working on a webstie: http://nexba.com.au/ Anyway, there is a strange floating box on the right hand side of the page that appears when there is vertical scrolling. This is not an issue on ...
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
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
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
3answers
154 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 ...
0
votes
1answer
153 views

Questions on WhiteBox testing, ON-Units, Condition-Coverage

I am reading a book where I am getting stuck at few white box testing concepts. The article in the below link is taken exactly from the book. ...
0
votes
0answers
97 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]] > ...