Tagged Questions

9
votes
8answers
633 views

What’s wrong with “magic”?

I'm trying to decide whether to use a Rails or a Django guru to create a web app for me. I've been recommended to use Django because it uses less "magic". From my perspective howev …
4
votes
6answers
454 views

Is it fair to accuse Rails of “magic”?

When I first started looking into Rails and Django I was steered away from Rails by Django developers who felt that Rails was a black box which uses an excess of "magic" (leaky abs …
4
votes
7answers
1k 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 perspecti …
3
votes
5answers
212 views

Black Box testing software

We are about to get a canned package in that has been modified to our needs. I am part of the team setup to prepare tests for it. It has an Oracle back end and I believe it's wri …
2
votes
7answers
213 views

Should QA test from a strictly black-box perspective?

Assuming that unit tests are handled by development, is there any reason for QA to have knowledge of the details of how a product works? By which I mean, do they need to know what …
1
vote
1answer
255 views

Integration test framework?

I am looking for a test framework to cover our black box integration tests. We need something that is scriptable by non developers (aka not C# unit test type stuff). The initial s …
1
vote
5answers
206 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 le …
0
votes
3answers
103 views

Using automated unit test for black box integration test, how bad is that and what is better?

I have an API that can be implemented by various vendors. I can send and receive data and get different return codes with the API. What I want to do is be able to test the API and …
0
votes
0answers
112 views

How to do black box testing?

Opposed to white-box / API testing, which is covered here There are many interviews, both for developers and qa, where you are asked to test smth out. A classic is to test the sav …
0
votes
4answers
471 views

best tool to reverse-engineer a WinXP PS/2 touchpad driver?

I have a PS/2 touchpad which I would like to write a driver for (I'm just a web guy so this is unfamiliar territory to me). The touchpad comes with a Windows XP driver, which appar …