Tagged Questions
The testing-strategies tag has no wiki summary.
97
votes
18answers
6k views
What Makes a Good Unit Test? [closed]
I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing.
My question is do you follow any rules of conduct for writing tests ...
28
votes
23answers
3k views
What not to test when it comes to Unit Testing?
In which parts of a project writing unit tests is nearly or really impossible? Data access? ftp?
If there is an answer to this question then %100 coverage is a myth, isn't it?
18
votes
8answers
2k views
Test Automation with Embedded Hardware
Has anyone had success automating testing directly on embedded hardware?
Specifically, I am thinking of automating a battery of unit tests for hardware layer modules. We need to have greater ...
10
votes
6answers
2k views
How to test on Live paypal site with dummy credit cards
Right now I am able to test credit card functionality on development server using test/dummy credit cards. But not able to test the same functionality on live server. Are there any dummy credit cards, ...
6
votes
4answers
240 views
How do you unit test a class that's meant to talk to data?
I have a few repository classes that are meant to talk to different kinds of data, deriving from an IRepository interface.
In implementations, the code talks to a data source, be this a directory of ...
5
votes
4answers
178 views
Good introductory text on static analysis for bug finding?
I'm looking for a good introductory text on the theory of static analysis for bug finding. Any recommendations?
5
votes
5answers
378 views
Introducing Test Driven Development in PHP
My workplace consists of a lot of cowboy coders. Many of them are junior. Which coincidentally contributes to a lot of code quality issues.
I'm looking for suggestions on how to best wane my team ...
4
votes
10answers
192 views
Tips for finding things in your program that are broken that you don't know about?
I was working on something for a client today when I found a way to break some functionality in our program.
(The code is really legacy code, it's been in development for about 10 years and I've ...
4
votes
6answers
314 views
Is there a right way to implement a continuous improvement (AKA software hardening) process?
Each release it seems that our customers find a few old issues with our software. It makes it look like every release has multiple bugs, when in reality our new code is generally solid.
We have tried ...
4
votes
8answers
271 views
Self Testing Tips? [closed]
Basically I'm wondering if anyone has any tips for ensuring your code is well tested without getting any help from anyone else in a limited time frame?
In the past I've always been able to find ...
4
votes
2answers
396 views
What are tools and best practices for testing web services?
I'm about to start work on a large project that will involve providing a significant number of web services.
We'll be using the Java platform, so, of course, we'll be making heavy use of JUnit, ...
4
votes
5answers
676 views
How Much Should Each Unit Test Test?
How much should each of my unit tests examine? For instance I have this test
[TestMethod]
public void IndexReturnsAView()
{
IActivityRepository repository = GetPopulatedRepository();
...
3
votes
5answers
83 views
Where should I put my testing code in relation to the code it is testing?
The two obvious places I can think of would be some sort of "testing" folder right next to the code I'm working on. So something like:
\project-code
\my-feature
\production-code
...
3
votes
3answers
206 views
How to manage Build time in TDD
Hi in my project we have hundreds of test cases.These test cases are part of build process which gets triggered on every checkin and sends mail to our developer group.This project is fairly big and is ...
3
votes
6answers
852 views
Is there a difference between TDD and Test First Development (or Test First Programming)?
Both ideas sound very similar to me, but there might be subtle differences or the exact same thing, explained in different ways. What is the relationship between TDD and Test First ...
3
votes
2answers
1k views
What is the most accurate method of estimating peak bandwidth requirement for a web application?
I am working on a client proposal and they will need to upgrade their network infrastructure to support hosting an ASP.NET application. Essentially, I need to estimate peak usage for a system with a ...
3
votes
2answers
231 views
What are the first tasks for implementing Unit Testing in Brownfield Applications?
Do you refactor your SQL first? Your architecture? or your code base?
Do you change languages? Do you throw everything away and start from scratch? [Not refactoring]
2
votes
1answer
117 views
I'm on a 2MBPS internet connection but i want to check a website like i'm on a 256 KBPS connection on same PC?
Does anyone know how to test? I'm on Windows XP? and Firefox , IE7 installed
2
votes
4answers
138 views
How do you stress test your own software?
I've been working on an app, by myself, and I am at a stage where everything works great--as long as the user does everything he or she is supposed to do. :-) The software needs more testing to see ...
2
votes
4answers
88 views
How to initiate automated testing?
I started as a software engineer at the company I'm currently at. Over time, I was either the only one willing to or capable of taking responsibility for various systems, and so I was "promoted" to ...
2
votes
2answers
168 views
How to manage test fixtures for end-to-end testing?
Having just set up a test framework for a new web application, I realized I missed one of the big questions: "How do I make tests independent from each other?"
Years ago I have set up some ...
2
votes
2answers
106 views
How to automate testing where the quality of results is largely subjective
I have been evolving an automation and statistics generation program through a series of rapid prototypes to see if the license cost of an API generates a good return on investment. The limited time ...
2
votes
2answers
89 views
Best practices for testing infinite input domains like a parser or rule based system?
Testing a text-to-speech engine is a rather daunting task. The engine itself parses input and applies rules for pronunciation based on phonetic analysis of individual words. In addition exception ...
2
votes
5answers
237 views
How do you measure if an interface change improved or reduced usability?
For an ecommerce website how do you measure if a change to your site actually improved usability? What kind of measurements should you gather and how would you set up a framework for making this ...
1
vote
2answers
237 views
How to test something rendered correctly?
How does one test if an application rendered something correctly?
For example (2D example):
How does one know that the shadow is placed correctly or the correct color / outline was rendered? Or if ...
1
vote
4answers
103 views
Project nearing completion. Time to begin testing. Which methods are feasible towards the end of the development cycle?
Let's assume one joins a project near the end of its development cycle. The project has been passed on across many teams and has been an overall free-for-all with no testing whatsoever taking place ...
1
vote
2answers
506 views
How will you categorise the various software testing methods?
Would this be right??
Black Box
1.1 Functional
1.1.1 Equivalence
1.1.2 BVA
1.1.3 Use case
1.1.4 Regression
1.1.5 UAT
1.2 Non Functional
1.2.1 Testing the System Design
...
1
vote
2answers
626 views
How do you mock params when testing a Rails model's setter?
Given the code from the Complex Form part III how would you go about testing the virtual attribute?
def new_task_attributes=(task_attributes)
task_attributes.each do |attributes|
...
0
votes
1answer
33 views
What is best testing strategy and tool for a GWT project
I am developing with GWT since a few months. I have difficulties with testing. I am using MVP pattern and activities and places. I test the classes without any GWT specific code with Junit. But the ...
0
votes
3answers
68 views
Strategies and tools for planning programs?
I am a second year compsci university student, and as my programs are getting larger, and the time I have to do them shorter, I find my marks are dropping.
I believe this isn't because I am not ...
0
votes
1answer
188 views
Using Capistrano to deploy rails app in remote DreamHost testing/sandbox server
Currently I use capistrano to deploy my app to a remote production server in Dreamhost (see this guide).
I would like to setup an alternate sub-domain (testing.example.com) in my DH setup as a ...
0
votes
3answers
91 views
How to check whole website for certain conditions in rendered source of every page , automatically?
Like I want to check
on Every page <h3> tag must come after <h2> otherwise page should be marked.
like if any page has PDF then Some particular text <p>Download Adobe reader from ...
0
votes
4answers
91 views
testing strategies: generating a XML file
I'm writing a couple of classes that generate xml file. (Details probably not important at the moment).
I wondering the best testing strategy is.
I don't want to re-write the xml generation code ...
0
votes
3answers
264 views
How to use automation for testing application involving highly complex calculations?
I want to following things for testing a application involving complex calculations:
How to use test automation tools for testing calculations?(using automation tools like QTP or open source tools)
...
0
votes
2answers
111 views
How to detect the context from which an application is being executed? Whether from Command Prompt or from within a Windows Form
I am trying to run a set of test cases through one of our internal applications. I need to be able to automate these tests and run them through the command line and log various things. The problem is ...
0
votes
2answers
293 views
automated system testing approaches for combination of PC + embedded SW
The system consists of a hardware device and a PC. The PC runs a GUI that controls the hardware device. To test the device various test hardware is used that can be controlled by RS232 or GPIB. To ...