Tagged Questions
1
vote
1answer
41 views
Production or Custom Test Data for Unit Testing?
I've recently had a little disagreement with fellow developers. We're transforming various ontologies from the original source format (Pica+, RDF, etc) into our data format and have several converters ...
-1
votes
1answer
39 views
Writing data driven reflection based tests to ensure design completeness [closed]
When writing software I'm often forced to at some point to make a decision that involves a design pattern of "by convention" naming and behavioral patterns. This normally makes me feel kind of slimy ...
0
votes
1answer
249 views
How to structure our Javascript so that it is easily editable, testable, and can make calls to render a view without knowing specifics about the view
I am working on a web app that displays some data and uses javascript.
Right now, we are serving up parts of our js (to display certain types of information, ie "Render a View") via our server which ...
2
votes
3answers
240 views
Writing selenium tests, should I just get it done or get it right?
I'm attempting to drive my user interface (heavy on javascript) through selenium. I've already tested the rest of my ajax interaction with selenium successfully. However, this one particular method ...
5
votes
3answers
270 views
When module calling gets ugly
Has this ever happened to you? You've got a suite of well designed, single-responsibility modules, covered by unit tests. In any higher-level function you code, you are (95% of the code) simply ...
2
votes
5answers
316 views
Config Class/Struct: Pattern or Anti-Pattern? Alternatives?
If you add new configuration options to a program, it can often have tons of ripple effects in terms of getting the options to where they need to be acted upon. There are three basic ways to deal ...
6
votes
6answers
230 views
From analysis to application
Which learning path would you recommend to be able to create complete application from requirement analysis, design (with various diagrams) to coding and testing?
It's not easy to get this knowledge ...
6
votes
11answers
892 views
Turn away a bug if no reproducible test case exists?
If customer has problems which are not reproducible because of complexity of actions they took they can't remember step by step - coders are missing a test case.
Indeed the issue is apperently ...
2
votes
4answers
206 views
Should Whitebox testers be involved in the software design process?
Should Whitebox testers be involved in the software design process and why?
10
votes
4answers
552 views
Does “notification center” pattern encourage good or bad program design?
Sometimes I come across these message-hub-style APIs, for example the Cocoa NSNotificationCenter: ...