Tagged Questions

60
votes
24answers
3k 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 …
29
votes
19answers
3k 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 …
29
votes
13answers
1k views

Tips for hiring good testers?

Hi all, We're looking to add a few good testers (err "qa engineers") to our team. It's been my experience in the past that the "10-1" rule for developers (good devs are 10 times more productive than …
27
votes
34answers
3k views

What is the downside to Test Driven Development?

What do I lose by adopting test driven design. I am not looking for the positives, only the negatives.
26
votes
18answers
2k 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 …
23
votes
11answers
1k 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. …
22
votes
13answers
1k 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.
20
votes
22answers
795 views

“Works on my machine” - How to fix non-reproducible bugs?

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 …
18
votes
11answers
665 views

How do you measure the quality of your unit tests?

If you (or your organization) aspires to thoroughly unit test your code, how do you measure the success or quality of your efforts? Do you use code coverage, what percentage do you aim for? Do …
18
votes
18answers
1k 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 …
18
votes
24answers
984 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 …
18
votes
6answers
837 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 …
17
votes
12answers
482 views

What interesting/novel/surprising uses have you found for automated tests?

I am working on JUnitMax, a project to increase the utility of automated tests. I'm looking for novel, unexpected ways tests prove valuable. For example, I use tests in responding to defects--one at …
16
votes
15answers
4k views

Interview programming test practice

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 …
16
votes
12answers
2k 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 …

1 2 3 4 5 94 next
15 30 50 per page