Software testing is any activity aimed at evaluating an attribute or capability of a program or system and determining that it meets its required results.
144
votes
20answers
101k views
Simulators/emulators for mobile browser testing?
I'm doing development of a web application aimed at mobile devices. What software can I use to simulate/emulate mobile browser environments?
I'm specifically looking for a way to test on Mobile ...
118
votes
28answers
22k views
Unit Testing C Code
I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java ...
85
votes
24answers
5k views
How to make junior programmers write tests?
We have a junior programmer that simply doesn't write enough tests.
I have to nag him every two hours, "have you written tests?"
We've tried:
Showing that the design becomes simpler
Showing it ...
68
votes
8answers
22k views
Getting Started with RSpec - Looking for tutorials
I'm looking to get started building a project and want to use RSpec from day one. My Ruby background is limited, however, I do have a good understanding of MVC and the structure within Ruby.
In doing ...
63
votes
19answers
24k views
Interview programming test practice [closed]
Does anyone know of some good resources for practice coding questions typically asked in interviews. I know of topcoder.com which is kind of fun to use to exercise your algorithms. And I have seen the ...
62
votes
15answers
38k views
HTTP testing tool, easily send POST/GET/PUT
I'm in the need of a tool to help debugging a webapp - anyone know of some simple
client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests ?
62
votes
12answers
14k views
Best practice Unit testing abstract classes?
I was wondering what the best practice is for unit testing abstract classes and classes that extend abstract classes.
Should I test the abstract class by extending it and stubbing out the abstract ...
62
votes
35answers
7k views
Disadvantages of Test Driven Development? [closed]
What do I lose by adopting test driven design?
List only negatives; do not list benefits written in a negative form.
60
votes
8answers
22k views
What is Unit test, Integration Test, Smoke test, Regression Test?
What is Unit test, Integration Test, Smoke test, Regression Test and what are the differences between them? And Which tools can I use for each of them?
For example I use JUnit,NUnit for Unit testing ...
58
votes
21answers
2k views
How do I get developers to treat test code as “real” code?
In the last two companies I've been at, I have found an overriding mentality among developers that it's okay to write unit tests in a throw-away style. Code that they would never write in the actual ...
54
votes
11answers
7k views
Tools for Generating Mock Data?
I'm looking for recommendations of a good, free tool for generating sample data for the purpose of loading into test databases. By analogy, something that produces "lorem ipsum" text for any RDBMS. ...
46
votes
8answers
3k views
What's a good way to overwrite DateTime.Now during testing?
I've got some (C#) code that relies on today's date to correctly calculate things in the future. If I use today's date in the testing, I have to repeat the calculation in the test, which doesn't feel ...
45
votes
19answers
8k views
When should I use Debug.Assert()?
I've been a professional software engineer for about a year now, having graduated with a CS degree. I've known about assertions for a while in C++ and C, but had no idea they existed in C# and .NET at ...
43
votes
12answers
13k views
How do I simulate a low bandwidth, high latency environment?
I need to simulate a low bandwidth, high latency connection to a server in order to emulate the conditions of a VPN at a remote site. The bandwidth and latency should be tweakable so I can discover ...
42
votes
9answers
9k views
Dummy SMTP Server for testing apps that send email
I have a lot of apps that send email. Sometimes it's one or two messages at a time. Sometimes it's thousands of messages.
In development, I usually test by substituting my own address for any ...
42
votes
18answers
3k views
Are you really using unit tests?
I have been involved in a lot of projects, both old and new, and one thing that they have in common is that almost none of them have been using unit testing. I prefer to use it, but often the customer ...
40
votes
12answers
2k views
How do you unit test the real world?
I'm primarily a C++ coder, and thus far, have managed without really writing tests for all of my code. I've decided this is a Bad Idea(tm), after adding new features that subtly broke old features, ...
40
votes
8answers
12k views
Junit vs TestNG
At work we are currently still using Junit3 to run our tests. We have been considering switching over to Junit4 for new tests being written but I have been keeping an eye on TestNG for a while now. ...
39
votes
9answers
21k views
Best way to compare 2 XML documents in Java
I'm trying to write an automated test of an application that basically translates a custom message format into an XML message and sends it out the other end. I've got a good set of input/output ...
38
votes
7answers
8k views
How to get started on TDD with Ruby on Rails?
I am familiar with the concepts (took testing classes in college), but I am not sure how to really use them yet since I never worked on a "real" TDD project.
I am about to start the development of a ...
38
votes
24answers
16k views
Tools for automated GUI testing (on Windows)?
What tools can be recommended for automated testing of GUI applications on Windows?
The tools must be language-independent and thus should be able to interact with any GUI, regardless of ...
38
votes
13answers
2k views
What common web exploits should I know about?
I'm pretty green still when it comes to web programming, I've spent most of my time on client applications. So I'm curious about the common exploits I should fear/test for in my site.
37
votes
5answers
2k views
36
votes
4answers
2k views
Haskell testing workflow
I just started a new Haskell project and wanted to set up a good testing workflow from the beginning. It seems like Haskell has a lot of excellent and unique testing tools and many different ways to ...
36
votes
14answers
39k views
How to compare two PDF files?
I need to compare large count of PDF files for it optical content. Because the PDF files was created on different platforms and with different versions of the software there are structural ...
35
votes
10answers
11k views
Selenium alternatives?
Selenium seems to be the mainstream tool for browser side testing and it isn't that horrible. But are there any alternatives hiding out there, even in beta phase?
34
votes
6answers
29k views
How to emulate gps location in the android Emulator?
I want to get longitude and latitude in android emulator for testing.
Can any one guide me how to achieve this?
How do I set the location of the emulator to a test position?
34
votes
16answers
19k views
How to set up unit testing for Visual Studio C++
I'm having trouble figuring out how to get the testing framework set up and usable in Visual Studio 2008 for C++ presumably with the built-in unit testing suite.
Any links or tutorials would be ...
33
votes
12answers
16k views
How do I run NUnit in debug mode from Visual Studio?
I've recently been building a test framework for a bit of C# I've been working on. I have NUnit set up and a new project within my workspace to test the component. All works well if I load up my unit ...
32
votes
9answers
4k views
Is there a sample Rails application with a number of cucumber stories?
I'm trying to really understand Cucumber stories. I get it, but I'm really slow writing them. I think if I saw a good fleshed out application, I'd get closer to where I want to be.
There are some ...
31
votes
9answers
14k views
Making the Android emulator run faster
The Android emulator is a bit sluggish. For some devices, like the Motorola Droid and the Nexus One, the app runs faster in the actual device than the emulator. This is a problem when testing games ...
31
votes
11answers
1k views
Pro's and Con's of unit testing after the fact
I have a largish complex app around 27k lines. Its essentially a rule drive multithreaded processing engine, without giving too much away Its been partially tested as it's been built, certain ...
30
votes
4answers
5k views
Pros and cons of using JavascriptMVC?
For the last year I have been developing a lot in javaScript using jQuery an ketchup. What I was lacking on was structuring and testing. So I went out googling and found javascriptmvc. This framework ...
30
votes
11answers
29k views
Internet Explorer 6 emulator recommendation
What good tool can be recommended for emulating Internet Explorer 6? I would rather not have to go and install an old copy of Windows XP somewhere.
30
votes
12answers
3k views
.NET Unit Testing packages?
Getting back into a bit more .NET after a few-years of not using it full-time, and wondering what the good unit testing packages are these days.
I'm familiar with NUnit (a few years ago), and have ...
29
votes
14answers
2k views
When to rewrite a code base from scratch
I think back to Joel Spolsky's article about never rewriting code from scratch. To sum up his argument: The code doesn't get rusty, and while it may not look pretty after many maintenance releases, ...
29
votes
10answers
19k views
How do you run a single test/spec file in RSpec?
I want to be able to run a single spec file's tests — for the one file I'm editing, for example. rake spec executes all the specs. My project is not a Rails project, so rake spec:doc doesn't ...
29
votes
7answers
9k views
Why should I use RSpec or shoulda with Rails?
I am setting up a rails app and I just finished making some unit tests and my friend said that apparently fixtures are no longer cool and people are now using RSpec or shoulda. I was wondering what ...
29
votes
6answers
8k views
Developing and Testing a Facebook application
Typically I develop my websites on trunk, then merge changes to a testing branch where they are put on a 'beta' website, and then finally they are merged onto a live branch and put onto the live ...
28
votes
13answers
1k views
How to run unit-tests in all browsers?
I've never used Selenium but I guess it's for simulating user interaction in all browsers.
That's like integration tests.
But how do you test your js libraries/frameworks (unit testing) on all the ...
28
votes
13answers
756 views
Is it worth trying to write tests for the most tightly coupled site in the world?
Imagine that 90% of your job is merely to triage issues on a very massive, very broken website. Imagine that this website is written in the most tightly coupled, least cohesive PHP code you've ever ...
28
votes
5answers
12k views
How to run Rails console in the test environment and load test_helper.rb?
The background: I'm having some problems with Thoughtbot's "Factory Girl" gem, with is used to create objects to use in unit and other tests. I'd like to go to the console and run different Factory ...
28
votes
17answers
18k views
Testing REST webservices
My organization is working on building RESTful webservices on JBoss appserver. The QA team is used to testing SOAP webservices so far using SoapUI. SoapUI has a new version that has REST capabilities. ...
28
votes
18answers
5k views
Do you test private method?
I have read the post about how to test private (http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods) method because I usually do not test them, I always thought ...
27
votes
5answers
6k views
How do I test a file upload in rails?
I have a controller which is responsible for accepting JSON files and then processing the JSON files to do some user maintenance for our application. In user testing the file upload and processing ...
26
votes
11answers
9k views
How to test a WPF user interface?
Using win forms with an MVC/MVP architecture, I would normally use a class to wrap a view to test the UI while using mocks for the model and controller/presenter. The wrapper class would make most ...
25
votes
22answers
870 views
Can unit testing be successfully added into an existing production project? If so, how and is it worth it?
I'm strongly considering adding unit testing to an existing project that is in production. It was started 18 months ago before I could really see any benefit of TDD (face palm), so now it's a rather ...
25
votes
23answers
1k views
“Works on my machine” - How to fix non-reproducible bugs? [closed]
Very occasionally, despite all testing efforts, I get hit with a bug report from a customer that I simply can't reproduce in the office.
(Apologies to Jeff for the 'borrowing' of the badge)
I have ...
25
votes
24answers
2k views
How do you test the performance of a website?
Are there specific tools to perform the following job or there is a suite of tools that help me do the following:
How can I check page load times?
How can I track down a page that
hogs memory?
How ...
24
votes
4answers
294 views
How can I test when a feature was added to Perl?
Are there any services similar to codepad that will allow you to test Perl constructs on old versions of perl?
Ideally, a system where you could enter an expression and it will tell you the oldest ...